├── CNAME
├── images
├── 404.jpg
├── config.png
├── step1.gif
├── first-post.png
├── jekyll-logo.png
└── jekyll-now-theme-screenshot.jpg
├── .gitignore
├── _layouts
├── page.html
├── post.html
└── default.html
├── _posts
├── 2015-01-21-your-filename.md
└── 2014-3-3-Hello-World.md
├── about.md
├── 404.md
├── index.html
├── _scss
├── _variables.scss
├── _reset.scss
├── _highlights.scss
└── _svg-icons.scss
├── _includes
├── analytics.html
├── disqus.html
└── svg-icons.html
├── feed.xml
├── LICENSE
├── _config.yml
├── style.scss
└── README.md
/CNAME:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/images/404.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bitbutter/jekyll-now/master/images/404.jpg
--------------------------------------------------------------------------------
/images/config.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bitbutter/jekyll-now/master/images/config.png
--------------------------------------------------------------------------------
/images/step1.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bitbutter/jekyll-now/master/images/step1.gif
--------------------------------------------------------------------------------
/images/first-post.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bitbutter/jekyll-now/master/images/first-post.png
--------------------------------------------------------------------------------
/images/jekyll-logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bitbutter/jekyll-now/master/images/jekyll-logo.png
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | _site
2 | .DS_Store
3 | .jekyll
4 | .bundle
5 | .sass-cache
6 | Gemfile
7 | Gemfile.lock
8 | node_modules
9 | package.json
--------------------------------------------------------------------------------
/images/jekyll-now-theme-screenshot.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bitbutter/jekyll-now/master/images/jekyll-now-theme-screenshot.jpg
--------------------------------------------------------------------------------
/_layouts/page.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | ---
4 |
5 | {{ page.title }}
8 |
9 |
]({{ site.baseurl }}/)
--------------------------------------------------------------------------------
/_layouts/post.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | ---
4 |
5 | {{ page.title }}
7 |
8 |
{{ site.description }}
32 |