{% macro inline_page(page) -%}

{{page.meta.title}}

{% if page.meta.image %} {% with img = page.meta.image %}
{{img_for(img, class="figure-img img-fluid rounded", sizes="(min-width: 1200px) 33vw, (min-width: 576px) 25vw, 100vw")}} {% if img.meta.title %}
{{img.meta.title}}
{% endif %}
{% endwith %} {% endif %} {{page.html_inline()|safe}}
{%- endmacro %} {% macro main_link() -%} {% if page.created_from %}
{{page.created_from.meta.title}}
{% endif %} {%- endmacro %} {% macro archive_link() -%} {% if page.meta.related.archive %}
Archive
{% endif %} {%- endmacro %} {% macro top_tags(limit=15) -%} {% with tags = taxonomy("tags") %} {% if tags %}
Top {{limit}} tags
{% for category_page in tags.top_categories(15) %} {{category_page.name}} {{category_page.meta.pages|length}} {% endfor %}
{% endif %} {% endwith %} {%- endmacro %} {% macro recent_series(limit=5) %} {% with series = taxonomy("series") %} {% if series %}
Recent series
{% endif %} {% endwith %} {%- endmacro %} {% macro pages(pages, limit=10) -%} {% for entry in syndicated_pages(pages, limit=limit + 1) %} {% if loop.index == limit + 1 %}
Archive of all posts
{% else %} {{inline_page(entry)}} {% endif %} {% else %}

There are no posts yet.

{% endfor %} {%- endmacro %} {% macro archive(pages) -%} {%- endmacro %}