# HG changeset patch # User Ludovic Chabant # Date 1417304006 28800 # Node ID 63798c9e5a5549ee278ae2b2fcf69a2f8cdd1def # Parent 2889d85b1d3204fb370c1b33a7cb2577750776a8 Display page tags with default theme. diff -r 2889d85b1d32 -r 63798c9e5a55 piecrust/resources/theme/templates/default.html --- a/piecrust/resources/theme/templates/default.html Sat Nov 29 15:33:05 2014 -0800 +++ b/piecrust/resources/theme/templates/default.html Sat Nov 29 15:33:26 2014 -0800 @@ -74,6 +74,14 @@ {% if page.title %}

{{ page.title }}

{% endif %} + {% if page.tags %} +
+ Posted in + {% for t in page.tags %} + {{t}}{% if not loop.last %}, {% endif %} + {% endfor %} +
+ {% endif %} {{ content|raw }} {% endblock %}