summaryrefslogtreecommitdiffstats
path: root/_taglist.html
diff options
context:
space:
mode:
authorNico von Geyso <Nico.Geyso@FU-Berlin.de>2012-07-07 16:55:28 +0200
committerNico von Geyso <Nico.Geyso@FU-Berlin.de>2012-07-07 16:55:28 +0200
commit38857a608bab2ea5eb65bfc1c4614033dbf78597 (patch)
tree04a3000340dba8f1dcb99199759b29744cb8b230 /_taglist.html
downloadwww-38857a608bab2ea5eb65bfc1c4614033dbf78597.tar.gz
www-38857a608bab2ea5eb65bfc1c4614033dbf78597.tar.bz2
www-38857a608bab2ea5eb65bfc1c4614033dbf78597.zip
initial commit
Diffstat (limited to '_taglist.html')
-rw-r--r--_taglist.html17
1 files changed, 17 insertions, 0 deletions
diff --git a/_taglist.html b/_taglist.html
new file mode 100644
index 0000000..0705547
--- /dev/null
+++ b/_taglist.html
@@ -0,0 +1,17 @@
+{% extends "_base.html" %}
+
+{% block title %}{{ entry.slug }} tag{% endblock %}
+
+{% block content %}
+<h2>Posts with tag {{ entry.slug }}</h2>
+
+<table class="posts">
+ {% for post in site.tags[entry.slug] %}
+ <tr>
+ <td class="date">{{ post.date.strftime('%Y, %B %d') }}</td>
+ <td class="title"><a href="{{ post.get_url() }}">{{ post.title }}</a></td>
+ <td class="tagline">{{ post.tagline }}</td>
+ </tr>
+ {% endfor %}
+</table>
+{% endblock %}