├── .gitignore ├── Gemfile ├── _includes ├── js.html ├── tweet-button.html ├── footer.html ├── header.html └── css │ ├── pygments-manni.css │ └── theme.css ├── favicon.ico ├── img ├── 2013 │ └── 03 │ │ └── bootstrap-expo.jpg ├── 2014 │ └── 02 │ │ ├── ratchet-docs.png │ │ ├── ratchet-examples.png │ │ └── ratchet-examples-sm.png ├── 2015 │ ├── bs-themes.png │ └── bs4-alpha.png └── ogp.png ├── apple-touch-icon.png ├── _layouts ├── default.html └── post.html ├── robots.txt ├── list.html ├── README.md ├── _config.yml ├── sitemap.xml ├── index.html ├── feed.xml ├── _posts ├── 2014-09-23-bootlint.md ├── 2015-11-24-bootstrap-3-3-6-released.md ├── 2015-11-24-Bootstrap-3-3-6-released.md ├── 2016-07-25-bootstrap-3-3-7-released.md ├── 2015-12-08-bootstrap-4-alpha-2.md ├── 2015-12-08-new-bootstrap-4-alpha.md └── 2015-08-19-bootstrap-4-alpha.md └── css └── style.css /.gitignore: -------------------------------------------------------------------------------- 1 | _site/ 2 | .DS_Store 3 | .ruby-version 4 | Gemfile.lock -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | gem 'github-pages', group: :jekyll_plugins -------------------------------------------------------------------------------- /_includes/js.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natanfelles/bootstrap-blog/gh-pages/favicon.ico -------------------------------------------------------------------------------- /img/ogp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natanfelles/bootstrap-blog/gh-pages/img/ogp.png -------------------------------------------------------------------------------- /apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natanfelles/bootstrap-blog/gh-pages/apple-touch-icon.png -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- 1 | {% include header.html %} 2 | 3 | {{ content }} 4 | 5 | {% include footer.html %} 6 | -------------------------------------------------------------------------------- /img/2015/bs-themes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natanfelles/bootstrap-blog/gh-pages/img/2015/bs-themes.png -------------------------------------------------------------------------------- /img/2015/bs4-alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natanfelles/bootstrap-blog/gh-pages/img/2015/bs4-alpha.png -------------------------------------------------------------------------------- /img/2014/02/ratchet-docs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natanfelles/bootstrap-blog/gh-pages/img/2014/02/ratchet-docs.png -------------------------------------------------------------------------------- /img/2013/03/bootstrap-expo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natanfelles/bootstrap-blog/gh-pages/img/2013/03/bootstrap-expo.jpg -------------------------------------------------------------------------------- /img/2014/02/ratchet-examples.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natanfelles/bootstrap-blog/gh-pages/img/2014/02/ratchet-examples.png -------------------------------------------------------------------------------- /img/2014/02/ratchet-examples-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natanfelles/bootstrap-blog/gh-pages/img/2014/02/ratchet-examples-sm.png -------------------------------------------------------------------------------- /robots.txt: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | 4 | # www.robotstxt.org/ 5 | 6 | # Allow crawling of all content 7 | User-agent: * 8 | Disallow: 9 | Sitemap: {{ site.url }}/sitemap.xml 10 | -------------------------------------------------------------------------------- /list.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | name: "list" 4 | --- 5 | 6 |