├── CNAME ├── .gitignore ├── Gemfile ├── _includes ├── js.html ├── tweet-button.html ├── footer.html ├── css │ ├── pygments-manni.css │ └── theme.css └── header.html ├── 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 ├── 2016 │ └── 07 │ │ ├── forms.png │ │ └── flex-cols.png ├── 2017 │ ├── alpha6-navbar.png │ └── bootstrap-4-beta.png ├── ogp.png ├── bootstrap-social.png └── bootstrap-social-logo.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 ├── 2017-06-14-introducing-bootstrap-jobs.md ├── 2015-11-24-Bootstrap-3-3-6-released.md ├── 2015-11-24-bootstrap-3-3-6-released.md ├── 2016-09-05-bootstrap-4-alpha-4.md ├── 2016-07-25-bootstrap-3-3-7-released.md ├── 2018-04-09-bootstrap-4-1.md ├── 2015-12-08-bootstrap-4-alpha-2.md ├── 2015-12-08-new-bootstrap-4-alpha.md ├── 2017-08-10-bootstrap-4-beta.md ├── 2016-10-19-bootstrap-4-alpha-5.md ├── 2015-08-19-bootstrap-4-alpha.md ├── 2017-01-06-bootstrap-4-alpha-6.md └── 2016-07-27-bootstrap-4-alpha-3.md └── css └── style.css /CNAME: -------------------------------------------------------------------------------- 1 | blog.getbootstrap.com.br -------------------------------------------------------------------------------- /.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/bootstrapbrasil/bootstrap-blog/HEAD/favicon.ico -------------------------------------------------------------------------------- /img/ogp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstrapbrasil/bootstrap-blog/HEAD/img/ogp.png -------------------------------------------------------------------------------- /apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstrapbrasil/bootstrap-blog/HEAD/apple-touch-icon.png -------------------------------------------------------------------------------- /img/2016/07/forms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstrapbrasil/bootstrap-blog/HEAD/img/2016/07/forms.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/bootstrapbrasil/bootstrap-blog/HEAD/img/2015/bs-themes.png -------------------------------------------------------------------------------- /img/2015/bs4-alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstrapbrasil/bootstrap-blog/HEAD/img/2015/bs4-alpha.png -------------------------------------------------------------------------------- /img/2016/07/flex-cols.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstrapbrasil/bootstrap-blog/HEAD/img/2016/07/flex-cols.png -------------------------------------------------------------------------------- /img/2017/alpha6-navbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstrapbrasil/bootstrap-blog/HEAD/img/2017/alpha6-navbar.png -------------------------------------------------------------------------------- /img/bootstrap-social.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstrapbrasil/bootstrap-blog/HEAD/img/bootstrap-social.png -------------------------------------------------------------------------------- /img/2014/02/ratchet-docs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstrapbrasil/bootstrap-blog/HEAD/img/2014/02/ratchet-docs.png -------------------------------------------------------------------------------- /img/2013/03/bootstrap-expo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstrapbrasil/bootstrap-blog/HEAD/img/2013/03/bootstrap-expo.jpg -------------------------------------------------------------------------------- /img/2017/bootstrap-4-beta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstrapbrasil/bootstrap-blog/HEAD/img/2017/bootstrap-4-beta.png -------------------------------------------------------------------------------- /img/bootstrap-social-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstrapbrasil/bootstrap-blog/HEAD/img/bootstrap-social-logo.png -------------------------------------------------------------------------------- /img/2014/02/ratchet-examples.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstrapbrasil/bootstrap-blog/HEAD/img/2014/02/ratchet-examples.png -------------------------------------------------------------------------------- /img/2014/02/ratchet-examples-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstrapbrasil/bootstrap-blog/HEAD/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 |