new file: .gitattributes
[GalaxyBlog.git] / index.md
blob5ae84061e06f3bb3169665add7f1eb9150512326
1 ---
2 layout: page
3 title: Hello World!
4 tagline: Supporting tagline
5 ---
6 {% include JB/setup %}
8 Read [Jekyll Quick Start](http://jekyllbootstrap.com/usage/jekyll-quick-start.html)
10 Complete usage and documentation available at: [Jekyll Bootstrap](http://jekyllbootstrap.com)
12 ## Writing instructions
14 1. `rake post title="English title used for slug" tags="Tags, divided by, Comma"`
15 2. Edit prompted file and set `title` to proper *Chinese* ones for ***real display***.
16 3. `git add ./_posts/2013-05-03-that-post.md` or `rm` it to cancel.
18 ## Tips
20 * `![](/assets/images/2015/1ofPlaned.jpg)`
21 * `<font color="navy">注:</font>`
23 ## Update Author Attributes
25 In `_config.yml` remember to specify your own data:
26     
27     title : My Blog =)
28     
29     author :
30       name : Name Lastname
31       email : blah@email.test
32       github : username
33       twitter : username
35 The theme should reference these variables whenever needed.
36     
37 ## Sample Posts
39 This blog contains sample posts which help stage pages and blog data.
40 When you don't need the samples anymore just delete the `_posts/core-samples` folder.
42     $ rm -rf _posts/core-samples
44 Here's a sample "posts list".
46 <ul class="posts">
47   {% for post in site.posts %}
48     <li><span>{{ post.date | date_to_string }}</span> &raquo; <a href="{{ BASE_PATH }}{{ post.url }}">{{ post.title }}</a></li>
49   {% endfor %}
50 </ul>
52 ## To-Do
54 This theme is still unfinished. If you'd like to be added as a contributor, [please fork](http://github.com/plusjade/jekyll-bootstrap)!
55 We need to clean up the themes, make theme usage guides with theme-specific markup examples.
57 ## Recent Posts
58 <ul class="posts">
59   {% for post in site.posts limit:5 %}
60     <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>
61   {% endfor %}
62 </ul>
63 <a href="archive.html"><span class="grey">...SEE ALL</span></a>