├── static ├── img │ └── .gitkeep ├── css │ ├── alt-fonts.css │ ├── pygment │ │ ├── vs.css │ │ ├── bw.css │ │ ├── borland.css │ │ ├── monokai.css │ │ ├── autumn.css │ │ ├── perldoc.css │ │ ├── trac.css │ │ ├── default.css │ │ ├── emacs.css │ │ ├── friendly.css │ │ ├── manni.css │ │ ├── colorful.css │ │ ├── murphy.css │ │ ├── pastie.css │ │ ├── native.css │ │ ├── fruity.css │ │ └── tango.css │ ├── custom.css │ ├── pygment.css │ └── normalize.css └── js │ ├── foundation │ ├── foundation.alert.js │ ├── foundation.tab.js │ ├── foundation.offcanvas.js │ ├── foundation.accordion.js │ ├── foundation.magellan.js │ ├── foundation.dropdown.js │ ├── foundation.tooltip.js │ ├── foundation.abide.js │ ├── foundation.interchange.js │ ├── foundation.reveal.js │ ├── foundation.topbar.js │ └── foundation.clearing.js │ ├── vendor │ ├── jquery.cookie.js │ ├── custom.modernizr.js │ └── modernizr.js │ └── modernizr.js ├── screenshot.png ├── templates ├── category.html ├── tag.html ├── page.html ├── tags.html ├── categories.html ├── analytics.html ├── archives.html ├── article.html ├── index.html └── base.html ├── LICENSE └── README.md /static/img/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaluik/foundation-default-colours/master/screenshot.png -------------------------------------------------------------------------------- /templates/category.html: -------------------------------------------------------------------------------- 1 | {% extends "index.html" %} 2 | 3 | {% set pagetitle = 'Category: ' ~ category %} -------------------------------------------------------------------------------- /templates/tag.html: -------------------------------------------------------------------------------- 1 | {% extends "index.html" %} 2 | 3 | {% set pagetitle = "Posts Tagged With '" ~ tag ~ "'" %} -------------------------------------------------------------------------------- /templates/page.html: -------------------------------------------------------------------------------- 1 | {% extends "base.html" %} 2 | 3 | {% block content %} 4 |