2021-12-02 11:53:48 +01:00
|
|
|
{% 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>
|
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) %}
|
2021-12-03 21:56:45 +01:00
|
|
|
{% if page.date %}
|
|
|
|
<div class="info">
|
|
|
|
<span class="date">{{ page.date }}</span>
|
|
|
|
{%- if page.extra.author -%}
|
|
|
|
, <span class="author">{{ page.extra.author }}</span>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
2021-12-02 12:08:48 +01:00
|
|
|
{% endmacro %}
|