Fix example/blog time formatting

Just a minor bug found testing your blog example, timestamp was printing `YEAR:HOUR`, fixed it to `HOUR:MIN`
This commit is contained in:
Susensio
2018-09-13 16:37:34 +02:00
committed by GitHub
parent 136aa32c73
commit d2d31a54fc
+1 -1
View File
@@ -11,6 +11,6 @@
{% endblock %}
{% block content %}
<p>Created {{ entry.timestamp.strftime('%m/%d/%Y at %G:%I%p') }}</p>
<p>Created {{ entry.timestamp.strftime('%m/%d/%Y at %I:%M%p') }}</p>
{{ entry.html_content }}
{% endblock %}