You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
{% macro list_taxonomy(title, kind) %}
|
|
|
|
<span class="title">{{ title }}</span>
|
|
|
|
<ul>
|
|
|
|
{% set tags = get_taxonomy(kind=kind) %}
|
|
|
|
{% for term in tags.items %}
|
|
|
|
<li class="item"><a href="{{ term.permalink | safe }}">{{ term.name |capitalize }}</a></li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
{% endmacro list_categories %}
|
|
|
|
|
|
|
|
{% macro page_info(page) %}
|
|
|
|
<div class="info">
|
|
|
|
<span class="date">{{ page.date }}</span>
|
|
|
|
{%- if page.extra.author -%}
|
|
|
|
, <span class="author">{{ page.extra.author }}</span>
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% if page.taxonomies.tags %}
|
|
|
|
<div class="taxonomy">
|
|
|
|
<ul>
|
|
|
|
{% for tag in page.taxonomies.tags %}
|
|
|
|
<li><a href="{{ get_taxonomy_url(kind="categories", name=tag) | safe }}">#{{ tag }}</a></li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
{% endmacro page_info %}
|