{% extends "puput/base.html" %} {% load static i18n wagtailcore_tags wagtailimages_tags puput_tags social_share %} {% block title %} {% if search_term %} {{ search_term }} | {{ blog_page.title }} {% else %} {{ block.super }} {% endif %} {% endblock title %} {% block meta_title %} {% if search_term %} {% trans 'Entries for' %} {{ search_type }} {{ search_term }} {% else %} {{ block.super }} {% endif %} {% endblock meta_title %} {% block meta_description %} {% if search_term %} {% trans 'Entries for' %} {{ search_type }} {{ search_term }} {% else %} {{ block.super }} {% endif %} {% endblock meta_description %} {% block social_share %} {% image blog_page.header_image fill-800x450 as share_image %} {% if blog_page.header_image %} {% endif %} {% endblock social_share %} {% block blog_content %} {% with per_page=blog_page.num_entries_page %} {# 'paginate' tag cannot render dotted variables, so we need to create a context var #} {% paginate per_page entries %} {% if search_term %}
{% trans 'Entries for' %} {{ search_type }} "{{ search_term }}"
{% endif %} {% for entry in entries %} {% entry_url entry blog_page as post_url %}
{% if entry.header_image %} {% image entry.header_image fill-800x240 as header_image %} {{ entry.header_image.title }} {% endif %}

{{ entry.title }}

{% if entry.excerpt %} {{ entry.excerpt|richtext }} {% else %} {{ entry.body|richtext|truncatewords_html:70 }} {% endif %}
{% empty %} {% trans 'No results found.' %} {% endfor %} {% endwith %} {% endblock blog_content %}