{% extends "ocyan_plugin_wagtail/page.html" %} {% load i18n %} {% load static %} {% load wagtailcore_tags %} {% load wagtailimages_tags %} {% block title %}{{ page.title }}{% endblock %} {% block body_class %}{{ block.super }} blog-overview{% endblock %} {% block headertext %}{{ page.title }}{% endblock %} {% block styles %} {{ block.super }} {% if blog_stylesheet_paths %} {% for stylesheet_path in blog_stylesheet_paths %} {% endfor %} {% else %} {% endif %} {% endblock %} {% block page_meta %} {{ block.super }} {% include "blog/partials/blog_canonical_links.html" with canonical_url=canonical_url prev_page_url=prev_page_url next_page_url=next_page_url only %} {% include "blog/partials/blog_structured_data.html" with page=page only %} {% endblock %} {% block content %}
{% include "blog/partials/blog_overview_intro.html" with page=page current_page=current_page paginator=paginator only %} {% if blogs %}
{% for blog in blogs %}
{% include "blog/partials/blog_overview_card.html" with blog=blog only %}
{% endfor %}
{% if paginator.num_pages > 1 %}
{% include "partials/cms_pagination.html" %}
{% endif %} {% else %}
{% trans "No blog posts have been published yet." %}
{% endif %}
{% endblock %}