1
0
em.0x45.cz/templates/macros.html

59 lines
1.8 KiB
HTML
Raw Normal View History

2021-12-04 21:34:47 +01:00
{% macro list_posts(section=false, count=0, taxonomy=false) %}
{% if taxonomy == false and section != false %}
2021-12-04 18:30:05 +01:00
{% set section = get_section(path=section~"/_index.md") %}
{% endif %}
2021-12-02 11:53:48 +01:00
{% for page in section.pages %}
2021-12-04 18:20:01 +01:00
{% if loop.index > count and count != 0 %}
2021-12-02 11:53:48 +01:00
{% break %}
{% endif %}
2021-12-04 19:10:58 +01:00
{{ self::print_article(page=page) }}
2021-12-02 11:53:48 +01:00
{% endfor %}
{% endmacro %}
{% macro print_article(page) %}
<article>
2021-12-04 22:05:33 +01:00
<h2><a href="{{ page.permalink }}">{{ page.title }}</a></h2>
2021-12-02 11:53:48 +01:00
<p>{{ page.summary | safe }}</p>
2021-12-02 12:08:48 +01:00
{{ self::page_info(page=page) }}
2021-12-02 11:53:48 +01:00
</article>
{% endmacro %}
2021-12-02 12:08:48 +01:00
{% macro page_info(page) %}
{% if page.date %}
<div class="info">
<span class="date">{{ page.date }}</span>
{%- if page.extra.author -%}
, <span class="author">{{ page.extra.author }}</span>
{% endif %}
2021-12-04 18:05:15 +01:00
{% if page.taxonomies.categories %}
<div class="taxonomy">
2021-12-04 19:10:58 +01:00
{{ self::list_taxonomy(kind="categories", page=page.taxonomies.categories, prepend="#") }}
2021-12-04 18:05:15 +01:00
</div>
{% endif %}
</div>
{% endif %}
2021-12-02 12:08:48 +01:00
{% endmacro %}
2021-12-04 19:10:58 +01:00
{% macro list_taxonomy(kind, page=false, prepend="") %}
{#
Option `kind` must always be set and specifies the wanted taxonomy.
If `page` is set, this macro only prints items specific for this page.
Otherwise it prints all items. It expects `page.taxonomies.<taxonomy>`.
Option `prepend` can be used to prepend any string to the item name.
#}
<ul>
2021-12-04 19:10:58 +01:00
{% if page != false %}
{% for term in page %}
<li class="item"><a href="{{ get_taxonomy_url(kind=kind, name=term) | safe }}">{{ prepend }}{{ term }}</a></li>
{% endfor %}
{% else %}
{% set taxonomy = get_taxonomy(kind=kind) %}
{% for term in taxonomy.items %}
<li class="item"><a href="{{ term.permalink | safe }}">{{ prepend }}{{ term.name }}</a></li>
{% endfor %}
{% endif %}
</ul>
2021-12-04 19:10:58 +01:00
{% endmacro %}