diff options
Diffstat (limited to 'templates/page.html')
-rw-r--r-- | templates/page.html | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/templates/page.html b/templates/page.html index 66faa93..4a3c86c 100644 --- a/templates/page.html +++ b/templates/page.html @@ -1,10 +1,9 @@ {% extends "base.html" %} {% block content %} {% set post = page %} -<div class="post-page"> +<div class="post-container"> <h2>{{ post.title }}</h2> - <p class="publish-date">{{ post.date }}</p> - <hr> + <p class="publish-date">Published on: {{ post.date | date(format="%b %d, %Y %H:%M Zulu") }}</p> {{ post.content | safe }} </div> {% endblock %} |