{% 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::list_article(page=page) }} {% endfor %} {% endmacro posts_latest %} {% macro list_taxonomy(title, kind) %} {{ title }} {% endmacro list_categories %} {% macro page_info(page) %}
{{ page.date }} {%- if page.extra.author -%} , {{ page.extra.author }} {% endif %} {% if page.taxonomies.tags %}
{% endif %}
{% endmacro page_info %} {% macro list_article(page) %}

{{ page.title }}

{{ page.summary | safe }}

{{ self::page_info(page=page) }}
{% endmacro list_articles %} {% macro pagination(paginator) %} {% endmacro pagination %}