summaryrefslogtreecommitdiffstatshomepage
path: root/templates/tags
diff options
context:
space:
mode:
Diffstat (limited to 'templates/tags')
-rw-r--r--templates/tags/list.html8
-rw-r--r--templates/tags/single.html12
2 files changed, 0 insertions, 20 deletions
diff --git a/templates/tags/list.html b/templates/tags/list.html
index 0cab254..260bb57 100644
--- a/templates/tags/list.html
+++ b/templates/tags/list.html
@@ -1,13 +1,5 @@
{% extends "base.html" %}
-{%- block title -%}
-all tags
-{%- endblock title -%}
-
-{%- block description %}
-all tags
-{%- endblock description %}
-
{% block content %}
<nav class="tags">
<ul class="inline">
diff --git a/templates/tags/single.html b/templates/tags/single.html
index 2238061..3cbdde4 100644
--- a/templates/tags/single.html
+++ b/templates/tags/single.html
@@ -1,17 +1,5 @@
{% extends "base.html" %}
-{%- block additional_feeds %}
-<link rel="alternate" type="application/atom+xml" title="zunzuncito - #{{ term.name }}" href="atom.xml" />
-{%- endblock %}
-
-{%- block title -%}
-posts tagged with #{{ term.name }}
-{%- endblock title -%}
-
-{%- block description %}
-posts tagged with #{{ term.name }} ยท <a href="atom.xml">feed</a>
-{%- endblock description %}
-
{%- block content %}
{%- for post in paginator.pages %}
{{ macros::render_post(post=post) }}