{% if resource.is_published %}

Published

  • Published on {{ resource.props.published.strftime('%Y-%m-%d') }} at {{ resource.props.published.strftime('%H:%M') }}.
{% else %}

Draft

  • This article does not have a current published date.
{% endif %}
{% set breadcrumbs = resource.parents(resources)[:-1]|reverse %} {% if breadcrumbs %}

Breadcrumbs

    {%- for parent in breadcrumbs %}
  • {% for arrow in range(loop.index) %} > {% endfor %} {{ parent.title }}
  • {%- endfor %}
{% endif %} {% if prev %}

Previous

    {{ prev.title }}
{% endif %} {% if next %}

Next

    {{ next.title }}
{% endif %} {% set toc_entries = resource.toctree %} {% if toc_entries %}

Contents

    {% for entry in toc_entries %}
  • {{ entry[1] }}
  • {% endfor %}

{% endif %} {% if resource.props.category %}

Categories

{% for category in references.resource_references(resource)['category'] %} {{ category.props.label }} {% endfor %}

{% endif %}