{% macro post_list_item(page, show_tags=true, show_series=true) %}
  • {{ page.title }}

    {% if show_series %} {% set path_parts = page.relative_path | split(pat="/") %} {% if path_parts | length > 2 %} {% set parent_dir = path_parts | slice(end=-2) | join(sep="/") %} {% set parent_section = get_section(path=parent_dir ~ "/_index.md") %} {% if parent_section and parent_section.extra.series %}

    Part of the series: {{ parent_section.title }}

    {% endif %} {% endif %} {% endif %}
    {% if page.reading_time %} {{ page.reading_time }} min read {% endif %} {% if show_tags and page.taxonomies.tags %} {% endif %}
    {% if page.description %}

    {{ page.description }}

    {% endif %}
  • {% endmacro %} {% macro post_meta(page, show_tags=true) %}
    {% if page.reading_time %} {{ page.reading_time }} min read {% endif %} {% if show_tags and page.taxonomies.tags %} {% endif %}
    {% endmacro %}