modified: index.md
[GalaxyBlog.git] / index.md
blobc426f899bf72091a913fc6160b6f9cfdc5ef64d6
1 ---
2 layout: page
3 title: Galaxy's World
4 tagline: 银河雪尘
5 ---
6 {% include JB/setup %}
8 ## Welcome
10 This is Galaxy's blog.
12 Since the contents mean more than the cover, thus no time spent on this cover.
14 ## Sub Sites
16 * [My Doctuments](/galaxy-doc/)
18 ## Recent Posts
19 <ul class="posts">
20   {% for post in site.posts limit:12 %}
21     <li><span>{{ post.date | date_to_string }}</span> &raquo; <a href="{{ BASE_PATH }}{{ post.url }}">{{ post.title }}</a> <em>Posted on {{ post.date | date_to_long_string }}.</em></li>
22   {% endfor %}
23 </ul>
24 <a href="archive.html"><span class="grey">...SEE ALL</span></a>
26 ## Markdown 
28 * Markdown 语法 (简体中文版)
30 [本地镜像](/etc/Markdown-Syntax-CN/)  
31 `git subtree add --prefix=etc/Markdown-Syntax-CN https://gitcafe.com/riku/Markdown-Syntax-CN.git master`
33 [繁体中文版 Markdown 語法說明中文版](https://github.com/othree/markdown-syntax-zhtw/blob/master/syntax.md)
35 [英文原版](http://daringfireball.net/projects/markdown/syntax), 及其[源代码](http://daringfireball.net/projects/markdown/syntax.text)
37 * GitHub 官方Markdown指南 [Mastering Markdown](https://guides.github.com/features/mastering-markdown/#examples)
39 https://guides.github.com/features/mastering-markdown/#GitHub-flavored-markdown
43 ## Old programming tips
45 Read [Jekyll Quick Start](http://jekyllbootstrap.com/usage/jekyll-quick-start.html)
47 Complete usage and documentation available at: [Jekyll Bootstrap](http://jekyllbootstrap.com)
49 ### Writing instructions
51 1. `rake post title="English title used for slug" tags="Tags, divided by, Comma"`
52 2. Edit prompted file and set `title` to proper *Chinese* ones for ***real display***.
53 3. `git add ./_posts/2013-05-03-that-post.md` or `rm` it to cancel.
55 ### Tips
57 * `![](/assets/images/2015/1ofPlaned.jpg)`
58 * `<font color="navy">注:</font>`
60 ### Update Author Attributes
62 In `_config.yml` remember to specify your own data:
63     
64     title : My Blog =)
65     
66     author :
67       name : Name Lastname
68       email : blah@email.test
69       github : username
70       twitter : username
72 The theme should reference these variables whenever needed.
73     
74 ### Sample Posts
76 This blog contains sample posts which help stage pages and blog data.
77 When you don't need the samples anymore just delete the `_posts/core-samples` folder.
79     $ rm -rf _posts/core-samples
81 Here's a sample "posts list".
83 <ul class="posts">
84   {% for post in site.posts %}
85     <li><span>{{ post.date | date_to_string }}</span> &raquo; <a href="{{ BASE_PATH }}{{ post.url }}">{{ post.title }}</a></li>
86   {% endfor %}
87 </ul>
89 ### To-Do
91 This theme is still unfinished. If you'd like to be added as a contributor, [please fork](http://github.com/plusjade/jekyll-bootstrap)!
92 We need to clean up the themes, make theme usage guides with theme-specific markup examples.