diff --git a/templates/macros.html b/templates/macros.html
index 694c7ea..f81ea5d 100644
--- a/templates/macros.html
+++ b/templates/macros.html
@@ -1,7 +1,11 @@
{% macro post_metadata(page) %}
{{ page.taxonomies["tags"] }}
-{{ page.date | date(format="%B %e, %Y") }}
+Posted on {{ page.date | date(format="%b %e, %Y") }}
+{% if page.updated %}
+ ·
+ Updated on {{ page.updated | date(format="%b %e, %Y") }}
+{% endif %}
· {{ page.reading_time }} minute read
{% endmacro post_metadata %}
@@ -13,7 +17,7 @@
{{ page.taxonomies["tags"] }}
- {{ page.date | date(format="%B %e, %Y") }}
+ {{ page.date | date(format="%b %e, %Y") }}
@@ -27,7 +31,7 @@
{{ page.taxonomies["tags"] }}
- {{ page.date | date(format="%B %e, %Y") }}
+ {{ page.date | date(format="%b %e, %Y") }}
@@ -36,7 +40,7 @@
{% if paginator.previous %}
Previous page
- {% endif%}
+ {% endif %}
{% if paginator.number_pagers > 1 %}
Page {{ paginator.current_index }}
{% endif %}