{% extends "base.html" %} {% block title %}Docspell Blog{% endblock title %} {% block sidebar %} {% endblock sidebar %} {% block rightToc %} {% endblock rightToc %} {% block mainContent %} {{ section.content | safe }}
{% for p in section.pages %} {% if not p.extra.hidden %} {% set author = "Unknown" %} {% if p.extra.author is defined %} {% set author = p.extra.author %} {% endif %}
{{ p.date }}
{{ p.word_count }}
{% if p.extra.authorLink is defined %} {{ author }} {% else %} {{ author }} {% endif %}
{{ p.summary | safe }}
{% endif %} {% endfor %}
{% endblock mainContent %}