diff options
author | Nicolas Dato <nicolas.dato@gmail.com> | 2024-11-27 10:17:40 -0300 |
---|---|---|
committer | Nicolas Dato <nicolas.dato@gmail.com> | 2024-11-27 10:17:40 -0300 |
commit | d87ac71bc50fe2f0e3c204190cced69379a8fbf9 (patch) | |
tree | e1ed4e001876cd3af209f9dde12d91661f5f6c4d /zola/templates | |
parent | 8354b8f77fdfd907f07574b63e910aba09232ade (diff) | |
download | ndato.com-master.tar.gz ndato.com-master.tar.bz2 |
Diffstat (limited to 'zola/templates')
-rw-r--r-- | zola/templates/page.html | 3 |
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 %} |