summaryrefslogtreecommitdiffstats
path: root/_post.html
diff options
context:
space:
mode:
authorNico von Geyso <Nico.Geyso@FU-Berlin.de>2012-08-04 20:28:20 +0200
committerNico von Geyso <Nico.Geyso@FU-Berlin.de>2012-08-04 20:28:20 +0200
commit598df7e0897232a47e141b0050881392ba489137 (patch)
tree18c69b7542433bf82823329a9f7e035e6db5d664 /_post.html
parent7368363bb53e90c836b035f03bea1adf646a4318 (diff)
downloadwww-598df7e0897232a47e141b0050881392ba489137.tar.gz
www-598df7e0897232a47e141b0050881392ba489137.tar.bz2
www-598df7e0897232a47e141b0050881392ba489137.zip
new layout for blog entries
Diffstat (limited to '_post.html')
-rw-r--r--_post.html26
1 files changed, 15 insertions, 11 deletions
diff --git a/_post.html b/_post.html
index 9366a9e..c1a08f6 100644
--- a/_post.html
+++ b/_post.html
@@ -1,20 +1,24 @@
{% extends "_base.html" %}
{% block content %}
-<h1>{{ entry.title|typogrify }}</h1>
+<div id="blog-show">
+ <h1>
+ {{ entry.title|typogrify }}
+ <small>{{ entry.date.strftime('%d %B %Y ') }}</small>
+ </h1>
+ <p>
+ </p>
-{{ entry.body }}
-
-<ul class="meta">
- <li>Published: {{ entry.date.strftime('%d %B %Y ') }}</li>
+ {{ entry.body }}
{% 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 -%}
+ <p>
+ <b>Tags</b>:
+ {% for tag in entry.tags -%}
+ <a href="{{ site.tag_cache.get(tag).get_url() }}">{{ tag }}</a>
+ {%- if not loop.last %}, {% endif -%}
{%- endfor %}
- </li>
+ </p>
{% endif %}
-</ul>
+</div>
{% endblock %}