nixfox-reborn/templates/blog-metadata.html

15 lines
659 B
HTML

<strong class="subtitle">
written: {{ page.date | date(format="%Y-%m-%d at %l:%M:%S%p EST") }}
{%- if page.updated %}
<br>
modified: {{ page.updated | date(format="%Y-%m-%d at %l:%M:%S%p EST") }}
{%- endif -%}
<br>
authors: {%- for tag in page.taxonomies.authors | sort | unique(case_sensitive=false) %}
<a class="post-author" href="{{ get_taxonomy_url(kind='authors', name=tag) | safe }}">{{ tag }}</a>
{% endfor -%}
<br>
tags: {%- for tag in page.taxonomies.tags | sort | unique(case_sensitive=false) %}
<a class="post-tag" href="{{ get_taxonomy_url(kind='tags', name=tag) | safe }}">#{{ tag }}</a>
{% endfor -%}
</strong>