1
0
em.0x45.cz/templates/macros.html
2021-12-02 12:08:48 +01:00

27 lines
685 B
HTML

{% macro posts_latest(section, count) %}
{% set section = get_section(path=section~"/_index.md") %}
{% for page in section.pages %}
{% if loop.index > count %}
{% break %}
{% endif %}
{{ macros::print_article(page=page) }}
{% endfor %}
{% endmacro %}
{% macro print_article(page) %}
<article>
<h1><a href="{{ page.permalink }}">{{ page.title }}</a></h1>
<p>{{ page.summary | safe }}</p>
{{ self::page_info(page=page) }}
</article>
{% endmacro %}
{% 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 %}
</div>
{% endmacro %}