{% macro one(post, fmt = "MM/DD") %}
{{ post.data.title }}

{{ post.data.excerpt }}

{% endmacro %} {% macro list(posts, format = "MM/DD") %}
    {% for post in posts %}
  1. {{ one(post, format) }}
  2. {% endfor %}
{% endmacro %} {% macro yearList(posts, year, format = "MM/DD") %}

{{ year }}

{{ posts | length }}

{{ list(posts, format) }}
{% endmacro %}