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