Flex theme.

This commit is contained in:
Alexandre Vicenzi 2015-07-18 21:04:01 -03:00
parent 0bb44cb06f
commit b35cde0428
30 changed files with 1437 additions and 0 deletions

17
templates/categories.html Normal file
View file

@ -0,0 +1,17 @@
{% extends "base.html" %}
{% block title %}– Categories{% endblock %}
{% block content %}
<article>
<header>
<h2>Categories</h2>
</header>
<div>
<ul class="list">
{% for category, articles in categories|sort %}
<li><a href="{{ SITEURL }}/{{ category.url }}">{{ category }}</a> ({{ articles|count }})</li>
{% endfor %}
</ul>
</div>
</article>
{% endblock %}