├── .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.date | date_to_string }}
9 | -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |