summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--_post.html2
-rw-r--r--_taglist.html2
-rw-r--r--blog.html2
3 files changed, 3 insertions, 3 deletions
diff --git a/_post.html b/_post.html
index c00cff8..3af9e80 100644
--- a/_post.html
+++ b/_post.html
@@ -5,7 +5,7 @@
<p id="back-link">
<a href="{{ site.url }}/{{ entry.path.split("/")[0] }}">Zurück zur Übersicht</a>
</p>
- <div id="post-date"><h1><small>{{ entry.date.strftime('%d %B %Y ') }}</small></h1></div>
+ <div id="post-date"><h1><small>{{ entry.date.strftime('%d. %B %Y ') }}</small></h1></div>
<h1>
{{ entry.title|typogrify }}
</h1>
diff --git a/_taglist.html b/_taglist.html
index 4ecaa03..0c973aa 100644
--- a/_taglist.html
+++ b/_taglist.html
@@ -8,7 +8,7 @@
<ul>
{% for post in site.tags[entry.slug] %}
<li>
- {{ post.date.strftime('%Y, %B %d') }}
+ {{ post.date.strftime('%x') }}
<a href="{{ post.get_url() }}">{{ post.title }}</a>
{{ post.tagline }}
</li>
diff --git a/blog.html b/blog.html
index c5e83e9..0939e50 100644
--- a/blog.html
+++ b/blog.html
@@ -11,7 +11,7 @@
{% for post in entries %}
<p class="blog-entry">
<div class="entry-date">
- {{ post.date.strftime('%B %d') }}
+ {{ post.date.strftime('%d. %B') }}
</div>
<div class="entry-title">
<a href="{{ post.get_url() }}">{{ post.title }}</a>