nixfox-reborn/templates/blog-entry.html

15 lines
585 B
HTML

<li class="postlist-item">
<a href="{{ page.permalink | safe }}">{{ page.title }}</a>
<br>
{{ page.description }}
<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>
written: {{ page.date }}
<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 -%}
</li>