{% extends "templates/web.html" %} {% block title %}{{ blog_title or _("Blog") }}{% endblock %} {% block hero %}{% endblock %} {% block page_content %}

{{ blog_title or _('Blog') }}

{{ blog_introduction or '' }}

{%- if browse_by_category -%} {%- endif -%}
{% if not result -%}
{{ no_result_message or _("Nothing to show") }}
{% else %}
{% for item in result %} {{ item }} {% endfor %}
{% endif %}
{% endblock %} {% block script %} {% endblock %}