├── .gitignore
├── 404.md
├── LICENSE
├── README.md
├── _config.yml
├── _layouts
├── default.html
├── page.html
└── post.html
├── _posts
├── 2015-05-02-welcome-to-jekyll.md
└── 2015-05-03-styles-for-vida.md
├── _sass
├── _base.scss
├── _color.scss
├── _layout.scss
└── _syntax.scss
├── about.md
├── css
└── main.scss
├── images
└── image.jpg
├── index.html
└── sample.md
/.gitignore:
--------------------------------------------------------------------------------
1 | _site/
2 | .sass-cache/
3 | .jekyll-metadata
4 |
--------------------------------------------------------------------------------
/404.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: page
3 | permalink: 404.html
4 | ---
5 |
6 | # 404
7 |
8 | Sorry, the page does not exist.
9 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | The MIT License (MIT)
2 |
3 | Copyright (c) Alex Sun
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in
13 | all copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21 | THE SOFTWARE.
22 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | vida
2 | ---------
3 |
4 | vida is a simple and beautiful jekyll theme.
5 | You can see demo [here](https://syaning.github.io/vida/).
6 |
7 | ### License
8 |
9 | MIT
10 |
--------------------------------------------------------------------------------
/_config.yml:
--------------------------------------------------------------------------------
1 | title: vida
2 | baseurl: "/vida"
3 |
4 | date_format: "%Y-%m-%d"
5 |
6 | # Build settings
7 | kramdown:
8 | input: GFM
9 | permalink: pretty
10 |
11 | # Third-party services
12 | # just leave someone empty to disable it
13 | google_analytics:
14 | disqus_shortname:
--------------------------------------------------------------------------------
/_layouts/default.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
7 | {{ content }}
8 | {% if site.disqus_shortname %}
9 |
10 |
19 | {% endif %}
20 |
21 |
--------------------------------------------------------------------------------
/_posts/2015-05-02-welcome-to-jekyll.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: post
3 | title: Welcome to Jekyll
4 | date: 2015-05-02 09:00:00
5 | ---
6 |
7 | You’ll find this post in your `_posts` directory. Go ahead and edit it and re-build the site to see your changes. You can rebuild the site in many different ways, but the most common way is to run `jekyll serve`, which launches a web server and auto-regenerates your site when a file is updated.
8 |
9 | To add new posts, simply add a file in the `_posts` directory that follows the convention `YYYY-MM-DD-name-of-post.ext` and includes the necessary front matter. Take a look at the source for this post to get an idea about how it works.
10 |
11 | Jekyll also offers powerful support for code snippets:
12 |
13 | {% highlight ruby %}
14 | def print_hi(name)
15 | puts "Hi, #{name}"
16 | end
17 | print_hi('Tom')
18 | #=> prints 'Hi, Tom' to STDOUT.
19 | {% endhighlight %}
20 |
21 | Check out the [Jekyll docs][jekyll] for more info on how to get the most out of Jekyll. File all bugs/feature requests at [Jekyll’s GitHub repo][jekyll-gh]. If you have questions, you can ask them on [Jekyll’s dedicated Help repository][jekyll-help].
22 |
23 | [jekyll]: http://jekyllrb.com
24 | [jekyll-gh]: https://github.com/jekyll/jekyll
25 | [jekyll-help]: https://github.com/jekyll/jekyll-help
26 |
--------------------------------------------------------------------------------
/_posts/2015-05-03-styles-for-vida.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: post
3 | title: Styles for vida
4 | date: 2015-05-03 10:30:00
5 | ---
6 |
7 | Vida is a simple and beautiful jekyll theme, it has only the essential functions
8 | so that you can concentrate on the content of your blog.
9 |
10 | First of all, let's have a glance at the basic styles: [link](http://github.com/syaning/vida),
11 | **strong**, *italic*, deletion, insertion.
12 |
13 | ### Headers:
14 |
15 | # Header 1
16 |
17 | ## Header 2
18 |
19 | ### Header 3
20 |
21 | #### Header 4
22 |
23 | ##### Header 5
24 |
25 | ###### Header 6
26 |
27 | ### Lists:
28 |
29 | - list item 1
30 | - list item 2
31 | - list item 3
32 |
33 | 1. list item 1
34 | 2. list item 2
35 | 3. list item 3
36 |
37 | ### Blockquote:
38 |
39 | > Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
40 |
41 | ### [BASSCSS](http://www.basscss.com/) colors:
42 |
43 | - black
44 | - gray
45 | - silver
46 | - white
47 | - aqua
48 | - blue
49 | - navy
50 | - teal
51 | - green
52 | - olive
53 | - lime
54 | - yellow
55 | - orange
56 | - red
57 | - fuchsia
58 | - purple
59 | - maroon
60 |
61 | ### Horizontal rule:
62 |
63 | -----------------------
64 |
65 | ### Image:
66 |
67 | 
68 |
69 | ### Table:
70 |
71 |