├── .gitignore ├── Gemfile ├── _layouts ├── page.html ├── post.html └── default.html ├── images ├── lambda.png ├── lambda-xl.png ├── screenshot.png ├── github-repo.png └── github-repository.png ├── about.md ├── 404.md ├── _includes ├── post_footer.html ├── disqus.html ├── post.html ├── header.html ├── footer.html └── head.html ├── index.html ├── _config.yml ├── _posts └── 2014-09-18-example-post.md ├── README.md ├── feed.xml ├── Gemfile.lock ├── css ├── syntax.css ├── lambda.css └── main.css ├── LICENSE └── Rakefile /.gitignore: -------------------------------------------------------------------------------- 1 | _site/ 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | gem 'github-pages' -------------------------------------------------------------------------------- /_layouts/page.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 | {% include post.html %} -------------------------------------------------------------------------------- /_layouts/post.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 | {% include post.html %} -------------------------------------------------------------------------------- /images/lambda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lauris/jekyll-lambda/HEAD/images/lambda.png -------------------------------------------------------------------------------- /images/lambda-xl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lauris/jekyll-lambda/HEAD/images/lambda-xl.png -------------------------------------------------------------------------------- /images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lauris/jekyll-lambda/HEAD/images/screenshot.png -------------------------------------------------------------------------------- /images/github-repo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lauris/jekyll-lambda/HEAD/images/github-repo.png -------------------------------------------------------------------------------- /images/github-repository.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lauris/jekyll-lambda/HEAD/images/github-repository.png -------------------------------------------------------------------------------- /about.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: page 3 | title: About 4 | permalink: /about/ 5 | comments: false 6 | author_footer: false 7 | --- 8 | 9 | About page, add content here. 10 | -------------------------------------------------------------------------------- /404.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: page 3 | title: 404 – Not Found 4 | permalink: /404.html 5 | comments: false 6 | author_footer: false 7 | --- 8 | 9 | This page is not found. Start from [home](/). 10 | -------------------------------------------------------------------------------- /_includes/post_footer.html: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | {% include head.html %} 5 | 6 | 7 | 8 |Subscribe via RSS or browse source on GitHub.
15 | 16 |