diff options
Diffstat (limited to 'templates/page.html')
-rw-r--r-- | templates/page.html | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/templates/page.html b/templates/page.html index 99f42ab..b858d1a 100644 --- a/templates/page.html +++ b/templates/page.html @@ -16,6 +16,9 @@ {% if page.date %} <p><time datetime="{{ page.date | date(format='%Y-%m-%d %H:%M:%S') }}">{{ page.date }}</time></p> {% endif %} + {% if page.updated %} + <p>Last Updated: <time datetime="{{ page.updated | date(format='%Y-%m-%d %H:%M:%S') }}">{{ page.updated }}</time></p> + {% endif %} <p>{{ page.word_count }} words; {{ page.reading_time }} minute(s)</p> {% if page.toc %} <details open> |