Unused templates removed

This commit is contained in:
Luca Chiricozzi 2015-01-10 01:40:39 +01:00
parent 61a124ad23
commit 6f5116dee6
3 changed files with 0 additions and 31 deletions

View File

@ -1,5 +0,0 @@
{% extends "index.html" %}
{% block title %}{{ author }}{% endblock %}
{% block description %}{% endblock %}
{% include 'common_seo.html' %}

View File

@ -1,5 +0,0 @@
{% extends "index.html" %}
{% block title %}{{ SITENAME }} | {{ tag|capitalize }}{% endblock %}
{% block description %}{% endblock %}
{% include 'common_seo.html' %}

View File

@ -1,21 +0,0 @@
{% extends "base.html" %}
{% block title %}Tags{% endblock %}
{% block description %}{% endblock %}
{% include 'common_seo.html' %}
{% block content %}
<div class="uk-width-medium-4-5">
<h1 class="uk-heading-large">Tags</h1>
{% for tag, articles in tags|sort %}
<h2><a href="{{ SITEURL }}/{{ tag.url }}" class="uk-link-muted">{{ tag }}</a> ({{ articles|count }})</h2>
{% for article in articles %}
<ul class="uk-list uk-list-space">
<li>
<a href="{{ article.url }}">{{ article.title }}</a>
</li>
</ul>
{% endfor %}
{% endfor %}
</div>
{% endblock %}