summaryrefslogtreecommitdiffstats
path: root/_post.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 /_post.html
downloadwww-38857a608bab2ea5eb65bfc1c4614033dbf78597.tar.gz
www-38857a608bab2ea5eb65bfc1c4614033dbf78597.tar.bz2
www-38857a608bab2ea5eb65bfc1c4614033dbf78597.zip
initial commit
Diffstat (limited to '_post.html')
-rw-r--r--_post.html21
1 files changed, 21 insertions, 0 deletions
diff --git a/_post.html b/_post.html
new file mode 100644
index 0000000..0605f1e
--- /dev/null
+++ b/_post.html
@@ -0,0 +1,21 @@
+{% extends "_base.html" %}
+
+{% block content %}
+<h1>{{ entry.title|typogrify }}</h1>
+
+{{ entry.body }}
+
+<ul class="meta">
+ <li>Published: {{ entry.date.strftime('%d %B %Y ') }}</li>
+
+ {% if entry.tags %}
+ <li>
+ Tags: {% for tag in entry.tags -%}
+ <a href="{{ site.tag_cache.get(tag).get_url() }}">{{ tag }}</a>
+ {%- if not loop.last %}, {% endif -%}
+ {%- endfor %}
+ </li>
+ {% endif %}
+</ul>
+
+{% endblock %}