aboutsummaryrefslogtreecommitdiff
path: root/templates/page.html
diff options
context:
space:
mode:
authorYaroslav <contact@yaroslavps.com>2020-03-13 18:28:40 +0300
committerYaroslav <contact@yaroslavps.com>2020-03-13 18:28:40 +0300
commit3caa2027c4c0d77c2706aac5356ce4aa666379a1 (patch)
treef400a270fd3b1a6b874ff8a40a05768df881b683 /templates/page.html
parentf3908a51aa9654f7049a5a5f74f89439d076924e (diff)
downloadyaroslavps.com-3caa2027c4c0d77c2706aac5356ce4aa666379a1.tar.gz
yaroslavps.com-3caa2027c4c0d77c2706aac5356ce4aa666379a1.zip
style/layout changes; gitignore
Diffstat (limited to 'templates/page.html')
-rw-r--r--templates/page.html5
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 %}