├── .gitignore ├── 404.md ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── Rakefile ├── _config.yml ├── _includes ├── disqus.html ├── footer.html ├── head.html ├── header.html ├── post.html └── post_footer.html ├── _layouts ├── default.html ├── page.html └── post.html ├── _posts └── 2014-09-18-example-post.md ├── about.md ├── css ├── lambda.css ├── main.css └── syntax.css ├── feed.xml ├── images ├── github-repo.png ├── github-repository.png ├── lambda-xl.png ├── lambda.png └── screenshot.png └── index.html /.gitignore: -------------------------------------------------------------------------------- 1 | _site/ 2 | -------------------------------------------------------------------------------- /404.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lauris/jekyll-lambda/HEAD/404.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | gem 'github-pages' -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lauris/jekyll-lambda/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lauris/jekyll-lambda/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lauris/jekyll-lambda/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lauris/jekyll-lambda/HEAD/Rakefile -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lauris/jekyll-lambda/HEAD/_config.yml -------------------------------------------------------------------------------- /_includes/disqus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lauris/jekyll-lambda/HEAD/_includes/disqus.html -------------------------------------------------------------------------------- /_includes/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lauris/jekyll-lambda/HEAD/_includes/footer.html -------------------------------------------------------------------------------- /_includes/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lauris/jekyll-lambda/HEAD/_includes/head.html -------------------------------------------------------------------------------- /_includes/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lauris/jekyll-lambda/HEAD/_includes/header.html -------------------------------------------------------------------------------- /_includes/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lauris/jekyll-lambda/HEAD/_includes/post.html -------------------------------------------------------------------------------- /_includes/post_footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lauris/jekyll-lambda/HEAD/_includes/post_footer.html -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lauris/jekyll-lambda/HEAD/_layouts/default.html -------------------------------------------------------------------------------- /_layouts/page.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 | {% include post.html %} -------------------------------------------------------------------------------- /_layouts/post.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 | {% include post.html %} -------------------------------------------------------------------------------- /_posts/2014-09-18-example-post.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lauris/jekyll-lambda/HEAD/_posts/2014-09-18-example-post.md -------------------------------------------------------------------------------- /about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lauris/jekyll-lambda/HEAD/about.md -------------------------------------------------------------------------------- /css/lambda.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lauris/jekyll-lambda/HEAD/css/lambda.css -------------------------------------------------------------------------------- /css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lauris/jekyll-lambda/HEAD/css/main.css -------------------------------------------------------------------------------- /css/syntax.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lauris/jekyll-lambda/HEAD/css/syntax.css -------------------------------------------------------------------------------- /feed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lauris/jekyll-lambda/HEAD/feed.xml -------------------------------------------------------------------------------- /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 -------------------------------------------------------------------------------- /images/lambda-xl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lauris/jekyll-lambda/HEAD/images/lambda-xl.png -------------------------------------------------------------------------------- /images/lambda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lauris/jekyll-lambda/HEAD/images/lambda.png -------------------------------------------------------------------------------- /images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lauris/jekyll-lambda/HEAD/images/screenshot.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lauris/jekyll-lambda/HEAD/index.html --------------------------------------------------------------------------------