{% extends "base.html" %} {% block content %}
{% if page.summary %} {{ page.summary | striptags | safe }} {% elif page.extra.excerpt %} {{ page.extra.excerpt | striptags | safe }} {% else %} {{ page.content | striptags | truncate(length=300) | safe }} {% endif %}
{{ macros::reading_time_from(word_count=page.word_count) }} {% if page.taxonomies["tags"] %}{{ macros::print_tags(page=page) }}{% endif %}