├── .gitignore ├── _config.yml ├── README.md ├── _posts └── 2013-09-28-hello-world.html ├── _layouts └── default.html └── index.html /.gitignore: -------------------------------------------------------------------------------- 1 | _site/ 2 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | baseurl: /ulric_jblog 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ulric_jblog 2 | =========== 3 | 4 | my blog 5 | -------------------------------------------------------------------------------- /_posts/2013-09-28-hello-world.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | title: Ulric的第一篇文章 4 | --- 5 | 6 |

{{ page.title }}

7 | 呵呵 by Ulric 8 |

{{ page.date | date_to_string }}

9 | -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | {{ page.title }} 6 | 7 | 8 | {{ content }} 9 | 10 | 11 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | title: Ulric Qin 4 | --- 5 | 6 | 以后这里放置个人简介about page 7 | 17 | --------------------------------------------------------------------------------