This repository has been archived on 2025-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
oliverdavies.uk-old-sculpin/source/_partials/post-header.html.twig

11 lines
237 B
Twig
Raw Normal View History

2015-04-25 06:13:10 +00:00
<h1>{{ page.title }}</h1>
2015-03-19 11:36:40 +00:00
<p class="posted">Posted: {{ page.date | date('jS F Y') }}</p>
{#
{% 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
#}