├── .gitignore ├── LICENCE.TXT ├── README.md ├── static ├── css │ ├── blog.css │ ├── font-awesome.css │ ├── framework.css │ ├── jquery.mglass.css │ ├── layout.css │ ├── linecons.css │ ├── magnific-popup.css │ ├── owl.carousel.css │ ├── pygment-solarized-dark.css │ ├── pygment-solarized-light.css │ ├── reset.css │ ├── superslides.css │ └── typography.css ├── img │ ├── 1x1.png │ ├── down_alternate.png │ ├── loading.gif │ └── magnifier.png └── js │ ├── ImageAutoResize.js │ ├── application.js │ ├── holder.js │ ├── jquery.appear.js │ ├── jquery.carouFredSel-6.2.1-packed.js │ ├── jquery.countTo.js │ ├── jquery.fitvids.min.js │ ├── jquery.isotope.js │ ├── jquery.magnific-popup.min.js │ ├── jquery.mglass.js │ ├── jquery.superslides.min.js │ ├── masonry.js │ ├── modernizr.min.js │ ├── owl.carousel.min.js │ └── scripts.js └── templates ├── _includes ├── footer.html ├── header.html ├── nav.html └── share_post.html ├── about.html ├── article.html ├── blog-index.html ├── blog.html ├── blog_base.html ├── category.html ├── index.html ├── macros.html ├── page.html ├── pagination.html └── tag.html /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | 3 | # Vim Files 4 | *.swp 5 | -------------------------------------------------------------------------------- /LICENCE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenMercusLai/BT3-Flat/HEAD/LICENCE.TXT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenMercusLai/BT3-Flat/HEAD/README.md -------------------------------------------------------------------------------- /static/css/blog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenMercusLai/BT3-Flat/HEAD/static/css/blog.css -------------------------------------------------------------------------------- /static/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenMercusLai/BT3-Flat/HEAD/static/css/font-awesome.css -------------------------------------------------------------------------------- /static/css/framework.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenMercusLai/BT3-Flat/HEAD/static/css/framework.css -------------------------------------------------------------------------------- /static/css/jquery.mglass.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenMercusLai/BT3-Flat/HEAD/static/css/jquery.mglass.css -------------------------------------------------------------------------------- /static/css/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenMercusLai/BT3-Flat/HEAD/static/css/layout.css -------------------------------------------------------------------------------- /static/css/linecons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenMercusLai/BT3-Flat/HEAD/static/css/linecons.css -------------------------------------------------------------------------------- /static/css/magnific-popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenMercusLai/BT3-Flat/HEAD/static/css/magnific-popup.css -------------------------------------------------------------------------------- /static/css/owl.carousel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenMercusLai/BT3-Flat/HEAD/static/css/owl.carousel.css -------------------------------------------------------------------------------- /static/css/pygment-solarized-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenMercusLai/BT3-Flat/HEAD/static/css/pygment-solarized-dark.css -------------------------------------------------------------------------------- /static/css/pygment-solarized-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenMercusLai/BT3-Flat/HEAD/static/css/pygment-solarized-light.css -------------------------------------------------------------------------------- /static/css/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenMercusLai/BT3-Flat/HEAD/static/css/reset.css -------------------------------------------------------------------------------- /static/css/superslides.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenMercusLai/BT3-Flat/HEAD/static/css/superslides.css -------------------------------------------------------------------------------- /static/css/typography.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenMercusLai/BT3-Flat/HEAD/static/css/typography.css -------------------------------------------------------------------------------- /static/img/1x1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenMercusLai/BT3-Flat/HEAD/static/img/1x1.png -------------------------------------------------------------------------------- /static/img/down_alternate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenMercusLai/BT3-Flat/HEAD/static/img/down_alternate.png -------------------------------------------------------------------------------- /static/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenMercusLai/BT3-Flat/HEAD/static/img/loading.gif -------------------------------------------------------------------------------- /static/img/magnifier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenMercusLai/BT3-Flat/HEAD/static/img/magnifier.png -------------------------------------------------------------------------------- /static/js/ImageAutoResize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenMercusLai/BT3-Flat/HEAD/static/js/ImageAutoResize.js -------------------------------------------------------------------------------- /static/js/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenMercusLai/BT3-Flat/HEAD/static/js/application.js -------------------------------------------------------------------------------- /static/js/holder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenMercusLai/BT3-Flat/HEAD/static/js/holder.js -------------------------------------------------------------------------------- /static/js/jquery.appear.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenMercusLai/BT3-Flat/HEAD/static/js/jquery.appear.js -------------------------------------------------------------------------------- /static/js/jquery.carouFredSel-6.2.1-packed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenMercusLai/BT3-Flat/HEAD/static/js/jquery.carouFredSel-6.2.1-packed.js -------------------------------------------------------------------------------- /static/js/jquery.countTo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenMercusLai/BT3-Flat/HEAD/static/js/jquery.countTo.js -------------------------------------------------------------------------------- /static/js/jquery.fitvids.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenMercusLai/BT3-Flat/HEAD/static/js/jquery.fitvids.min.js -------------------------------------------------------------------------------- /static/js/jquery.isotope.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenMercusLai/BT3-Flat/HEAD/static/js/jquery.isotope.js -------------------------------------------------------------------------------- /static/js/jquery.magnific-popup.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenMercusLai/BT3-Flat/HEAD/static/js/jquery.magnific-popup.min.js -------------------------------------------------------------------------------- /static/js/jquery.mglass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenMercusLai/BT3-Flat/HEAD/static/js/jquery.mglass.js -------------------------------------------------------------------------------- /static/js/jquery.superslides.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenMercusLai/BT3-Flat/HEAD/static/js/jquery.superslides.min.js -------------------------------------------------------------------------------- /static/js/masonry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenMercusLai/BT3-Flat/HEAD/static/js/masonry.js -------------------------------------------------------------------------------- /static/js/modernizr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenMercusLai/BT3-Flat/HEAD/static/js/modernizr.min.js -------------------------------------------------------------------------------- /static/js/owl.carousel.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenMercusLai/BT3-Flat/HEAD/static/js/owl.carousel.min.js -------------------------------------------------------------------------------- /static/js/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenMercusLai/BT3-Flat/HEAD/static/js/scripts.js -------------------------------------------------------------------------------- /templates/_includes/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenMercusLai/BT3-Flat/HEAD/templates/_includes/footer.html -------------------------------------------------------------------------------- /templates/_includes/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenMercusLai/BT3-Flat/HEAD/templates/_includes/header.html -------------------------------------------------------------------------------- /templates/_includes/nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenMercusLai/BT3-Flat/HEAD/templates/_includes/nav.html -------------------------------------------------------------------------------- /templates/_includes/share_post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenMercusLai/BT3-Flat/HEAD/templates/_includes/share_post.html -------------------------------------------------------------------------------- /templates/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenMercusLai/BT3-Flat/HEAD/templates/about.html -------------------------------------------------------------------------------- /templates/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenMercusLai/BT3-Flat/HEAD/templates/article.html -------------------------------------------------------------------------------- /templates/blog-index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenMercusLai/BT3-Flat/HEAD/templates/blog-index.html -------------------------------------------------------------------------------- /templates/blog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenMercusLai/BT3-Flat/HEAD/templates/blog.html -------------------------------------------------------------------------------- /templates/blog_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenMercusLai/BT3-Flat/HEAD/templates/blog_base.html -------------------------------------------------------------------------------- /templates/category.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenMercusLai/BT3-Flat/HEAD/templates/category.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenMercusLai/BT3-Flat/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/macros.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenMercusLai/BT3-Flat/HEAD/templates/macros.html -------------------------------------------------------------------------------- /templates/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenMercusLai/BT3-Flat/HEAD/templates/page.html -------------------------------------------------------------------------------- /templates/pagination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenMercusLai/BT3-Flat/HEAD/templates/pagination.html -------------------------------------------------------------------------------- /templates/tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenMercusLai/BT3-Flat/HEAD/templates/tag.html --------------------------------------------------------------------------------