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

11 lines
235 B
HTML
Raw Normal View History

2015-04-25 06:13:10 +00:00
<h1>{{ page.title }}</h1>
2015-06-16 17:39:59 +00: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 02:27:41 +00: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 02:27:41 +00:00
#}