http://kevinjmh.github.io/web/2014/04/20/build-your-jekyll-blog/

20 April 2014

On GitHub

Follow the instructions on jekyllbootstrap

On Windows

Download rubyinstaller&DevKit

Run command in cmd:

gem install bundler
gem install jekyll

Visit Local Site

Swich the dir to your site folder

Run command in cmd:

jekyll serve

jekyll serve --watch(自动更新,如出错请cmd运行gem install wdm)

Some Useage

rake post title="Hello World"
rake page name="about.md"
rake page name="pages/about.md"
rake page name="pages/about"
# this will create the file: ./pages/about/index.html

最新文章

  1. (PHP)程序中如何判断当前用户终端是手机等移动终端
  2. Java基础知识学习(六)
  3. 图的深度优先和广度优先遍历(图以邻接表表示,由C++面向对象实现)
  4. LeetCode:Gray Code(格雷码)
  5. PHP5.4安装xhprof扩展[不要去pecl下载]
  6. mysql+mybatis 插入可递增字段库表操作
  7. 通用函数get和set
  8. 【转】ubuntu下自动挂载硬盘分区
  9. [Windows Phone] 导览控制项(Navigation controls)
  10. JavaScript DOM编程艺术-学习笔记(第十章、第十一章)
  11. Mego开发文档 - 数据属性生成值
  12. Identity Server 4 预备知识 -- OpenID Connect 简介
  13. H5音乐自动播放ios//禁止安卓手机图片点击
  14. 使用offsetof对结构体指针偏移操作
  15. 修改spring源码重写classloader实现项目加密
  16. c#反射(1)
  17. python改文件名
  18. each遍历
  19. linux下安装vsftp(二)
  20. Linux学习杂记

热门文章

  1. hdu3586 Information Disturbing 【树形dp】
  2. linux系统——etc下的profile文件
  3. 荔枝丹(litchi)
  4. Gerrit使用简介
  5. 【12】vue-router 之路由重定向
  6. BZOJ 1497: [NOI2006]最大获利
  7. form快速转json serialize
  8. 比较全的.NET页面缓存技术文章
  9. [LeetCode] Count and Say 字符串
  10. 将一个二叉树左右翻转(Java 版)