oliverdavies.uk/source/_partials/post-header.html

11 lines
235 B
HTML
Raw Normal View History

2015-04-25 07:13:10 +01:00
<h1>{{ page.title }}</h1>
2015-06-16 18:39:59 +01:00
<p class="posted">Posted: {{ page.date|date('jS F Y') }}</p>
2015-03-19 11:36:40 +00:00
{#
{% if page.tags %}
2015-06-14 03:27:41 +01:00
Tags:
{% for tag in page.tags %}
{{ tag }}{% if not loop.last %},{% else %}.{% endif %}
{% endfor %}
2015-03-19 11:36:40 +00:00
{% endif %}
2015-06-14 03:27:41 +01:00
#}