modified: _posts/2015-07-03-NanocoreGlimmer.md
[GalaxyBlog.git] / index.md
blobcc3f9f914e950649db8f3f1780446922c43f80e0
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/)
32     ```bash
33 git subtree add --prefix=etc/Markdown-Syntax-CN https://gitcafe.com/riku/Markdown-Syntax-CN.git master
34 git subtree pull --prefix=etc/Markdown-Syntax-CN https://gitcafe.com/Pause_J/Markdown-Syntax-CN.git master
35     ```
37    * [繁体中文版 Markdown 語法說明中文版](https://github.com/othree/markdown-syntax-zhtw/blob/master/syntax.md)
39    * [英文原版](http://daringfireball.net/projects/markdown/syntax), 及其[源代码](http://daringfireball.net/projects/markdown/syntax.text)
41 * GitHub 官方Markdown指南 [Mastering Markdown](https://guides.github.com/features/mastering-markdown/#examples)
43     https://guides.github.com/features/mastering-markdown/#GitHub-flavored-markdown
47 ## Old programming tips
49 Read [Jekyll Quick Start](http://jekyllbootstrap.com/usage/jekyll-quick-start.html)
51 Complete usage and documentation available at: [Jekyll Bootstrap](http://jekyllbootstrap.com)
53 ### Writing instructions
55 1. `rake post title="English title used for slug" tags="Tags, divided by, Comma"`
56 2. Edit prompted file and set `title` to proper *Chinese* ones for ***real display***.
57 3. `git add ./_posts/2013-05-03-that-post.md` or `rm` it to cancel.
59 ### Tips
61 * `![](/assets/images/2015/1ofPlaned.jpg)`
62 * `<font color="navy">注:</font>`
64 ### Update Author Attributes
66 In `_config.yml` remember to specify your own data:
67     
68     title : My Blog =)
69     
70     author :
71       name : Name Lastname
72       email : blah@email.test
73       github : username
74       twitter : username
76 The theme should reference these variables whenever needed.
77     
78 ### Sample Posts
80 This blog contains sample posts which help stage pages and blog data.
81 When you don't need the samples anymore just delete the `_posts/core-samples` folder.
83     $ rm -rf _posts/core-samples
85 Here's a sample "posts list".
87 <ul class="posts">
88   {% for post in site.posts %}
89     <li><span>{{ post.date | date_to_string }}</span> &raquo; <a href="{{ BASE_PATH }}{{ post.url }}">{{ post.title }}</a></li>
90   {% endfor %}
91 </ul>
93 ### To-Do
95 This theme is still unfinished. If you'd like to be added as a contributor, [please fork](http://github.com/plusjade/jekyll-bootstrap)!
96 We need to clean up the themes, make theme usage guides with theme-specific markup examples.