Create Blog With Jeykll
Table of Contents
使用 Jeykll 搭建博客。
<!– more –>
Jeykll 配置
修改_config.yml 文件中的配置信息: title:wolfand11's Blog name:Dong Guo github : wolfand11 production_url : http://wolfand11.github.com ......
org-mode 配置
org-mode 配置指南 http://orgmode.org/worg/org-tutorials/org-jekyll.html
新建一篇博文
在 wolfand11.github.com/org/目录下新建一个 XXXX.org 文件。
.org 文件的名称必须以时间开始,例如:2012-12-2-Github 博客使用指南.org。否则,github 上不会显示该博文。
在 org-mode 下,调用命令 org/github-blog-new-entry。这样就会生成一个博文的模板。模板内容为:
// #+Tile: dired-mode document // #+BEGIN_HTML // --- // layout: page // title: TEST // category : tool // tags : [tool, emacs] // --- // \{\% include JB/setup %\} //you should remove \ // #+END_HTML
发布博文
发布当前的博文
在 org-mode 下,调用命令 org-publish-current-file。该命令会在\_posts 对应生成.xml 文件。
重新发布 org 目录下的所有博文
在 org-mode 下,调用命令 org-publish-project,然后输入 Project 名称:iGitBlog。该命令会将 org 目录下的所有.org 文件都重新发布一遍。
注意事项:
1、不要在#+BEGIN_HTML 之前添加#+Title 等标签,否则生成的 HTML 不会被 jekyll 支持,出现页面没有 css 的情况。