如何使用Hyde生成新内容?

时间:2012-01-07 23:12:38

标签: python django jekyll hyde

我开始学习Hyde并且我克隆了一些来自Github的海德写的博客。我可以在我的Web浏览器中成功生成这些示例博客并在本地提供它们;但是,我似乎无法弄清楚如何实际生成新内容。例如,如何在HTML或markdown中添加新文件,然后将文件提供给网站?我没有在docs中提到如何执行此操作。我错过了什么?我正在使用的示例博客的目录结构如下所示:

---content
    ---about
    ---blog  
---deploy
    ---about
    ---blog
---layout
   ---base.j2
   ---listing.j2
   ---posts.j2
---info.yaml
---site.yaml

有人可以解释如何添加HTML或降价文件并让它们服务吗?

2 个答案:

答案 0 :(得分:10)

Hyde没有创建新文件的命令。您可以在您喜欢的编辑器中创建该文件,并将其保存在正确的目录中。

例如,如果您想要一个包含此网址的博文: http://localhost:8080/blog/2012/01/05/a-new-post

您已执行以下操作:

  1. 在您的内容文件夹
  2. 下创建目录blog/2010/01/05
  3. 使用文字编辑器创建帖子
  4. 将文件保存在您在步骤1中创建的目录中
  5. 执行hyde genhyde serve时,您会看到该文件显示在该网址中

答案 1 :(得分:3)

我编写了一个名为Ghorg的项目,它提供了一个命令行实用程序,用于管理org-mode博客帖子的集合,将它们作为html发布到你的hyde站点,并调用hyde生成和发布功能。这纯粹是为了方便实用,您不再需要访问您的站点存储库来使用它。

我认为,例如,如果某些vim用户或想要进行邮件管理而不是org-mode发布但可能是markdown或其他东西的人(现在它的硬编码只是打开emacs) - 如果这些人想要帮助使这更加通用,那就太好了。

Ghorg: Org for Hyde

    dlacewell@scarf$ ghorg -h
    usage: ghorg [-h] [-b] [-p] [-s SITE] [--config CONFIG] [-l] [-n [N]] [-P]
                 [-U] [-e] [-t TEMPLATE] [-D]
                 [title [title ...]]

    Manage your Ghorg blog.

    positional arguments:
      title                 all arguments will be joined with hyphen for filename
                            `ghorg post title' => `2012-01-12-post-title.org'

    optional arguments:
       h, --help            show this help message and exit
       b, --build           Perform configured Hyde build step.
       p, --publish         Perform configured Hyde publishing step. (implies -b/--        build)
       s SITE, --site SITE  Path to the root of the Hyde site.
       config CONFIG        Filename of Hyde configuration for building.
       l, --list            List previous posts (-n to change count).
       n [N]                Change number of posts listed (default:5).
       P                    Set post as published.
       U                    Set post as unpublished.
       e                    Mix with -P/-U to edit while changing publishing
                            status.
       t TEMPLATE           Location of template for new posts.
       D                    Delete existing post.