summaryrefslogtreecommitdiff
path: root/zola/templates
diff options
context:
space:
mode:
authorNicolas Dato <nicolas.dato@gmail.com>2024-11-27 10:17:40 -0300
committerNicolas Dato <nicolas.dato@gmail.com>2024-11-27 10:17:40 -0300
commitd87ac71bc50fe2f0e3c204190cced69379a8fbf9 (patch)
treee1ed4e001876cd3af209f9dde12d91661f5f6c4d /zola/templates
parent8354b8f77fdfd907f07574b63e910aba09232ade (diff)
downloadndato.com-master.tar.gz
ndato.com-master.tar.bz2
adding description and creation date to articlesHEADmaster
Diffstat (limited to 'zola/templates')
-rw-r--r--zola/templates/page.html3
1 files changed, 3 insertions, 0 deletions
diff --git a/zola/templates/page.html b/zola/templates/page.html
index 180bd84..bad9764 100644
--- a/zola/templates/page.html
+++ b/zola/templates/page.html
@@ -11,6 +11,9 @@
{% endblock %}
{% block content %}
<article title="{{ page.title }}">
+ {{ page.description }}<br/>
+ Created: <em>{{ page.date }}</em>
+ {% if page.updated %} <br/>Updated: <em>{{ page.updated }}</em> {% endif %}
{{ page.content | safe }}
</article>
{% endblock %}