3分钟建立一个Jekyll Blog
如果你正考虑用Jekyll作为Blog系统,那么可以参考一下Jekyll-Bootstrap,上面有从入门到精通的教程。如果你想快速的建一个站看看,那么下面几步可以让你在三分钟里建立一个运行在github上的blog,前提是你已经有了github账号和配置好了git。
建立一个新的github repository
名字为USERNAME.github.com
, USERNAME
为你的github用户名
安装Jekyll-Bootstrap-Core
$ git clone https://github.com/plusjade/jekyll-bootstrap.git USERNAME.github.com
$ cd USERNAME.github.com
$ git remote set-url origin git@github.com:USERNAME/USERNAME.github.com.git
$ git push origin master
查看成果
访问http://USERNAME.github.com ,github已经为你生成了一个站点。
添加主题
在当前目录输入
rake theme:install git="https://github.com/jekyllbootstrap/theme-the-program.git"
即可
在本机预览
--- 需要安装ruby,在当前目录终端输入:
jekyll --server
在浏览器中输入:
http://localhost:4000/
其他参考资料
讲述了怎么在本机上用jekyll搭建博客
雁起平沙的网络日志
2012年02月10日 星期五 20时03分33秒