summaryrefslogtreecommitdiffstats
path: root/_taglist.html
diff options
context:
space:
mode:
authorNico von Geyso <Nico.Geyso@FU-Berlin.de>2012-07-09 17:08:41 +0200
committerNico von Geyso <Nico.Geyso@FU-Berlin.de>2012-07-09 17:08:41 +0200
commitf25236bd6f1082f779fc365f7d2c14a60891dcf5 (patch)
tree66ce571e4a3b711715721261680d4802efa6d7b1 /_taglist.html
parentc13d334376c5bc5eca664fe1a5abf7a54e24ecbc (diff)
downloadwww-f25236bd6f1082f779fc365f7d2c14a60891dcf5.tar.gz
www-f25236bd6f1082f779fc365f7d2c14a60891dcf5.tar.bz2
www-f25236bd6f1082f779fc365f7d2c14a60891dcf5.zip
some content here and there
Diffstat (limited to '_taglist.html')
-rw-r--r--_taglist.html14
1 files changed, 7 insertions, 7 deletions
diff --git a/_taglist.html b/_taglist.html
index 0705547..4ecaa03 100644
--- a/_taglist.html
+++ b/_taglist.html
@@ -5,13 +5,13 @@
{% block content %}
<h2>Posts with tag {{ entry.slug }}</h2>
-<table class="posts">
+<ul>
{% 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>
+ <li>
+ {{ post.date.strftime('%Y, %B %d') }}
+ <a href="{{ post.get_url() }}">{{ post.title }}</a>
+ {{ post.tagline }}
+ </li>
{% endfor %}
-</table>
+</ul>
{% endblock %}