60 lines
1.2 KiB
HTML
60 lines
1.2 KiB
HTML
{% extends "aircox_cms/base_site.html" %}
|
|
{% load i18n %}
|
|
|
|
{% load wagtailcore_tags %}
|
|
{% load wagtailimages_tags %}
|
|
|
|
{% load aircox_cms %}
|
|
|
|
{% if not object_list %}
|
|
{% block title %}
|
|
<h1 class="title">{{ page.title }}</h1>
|
|
|
|
{% if page.cover %}
|
|
{% image page.cover max-600x480 class="cover" height="" width="" %}
|
|
{% endif %}
|
|
|
|
<section class="summary">
|
|
{% if page.summary %}
|
|
{{ page.summary }}
|
|
{% else %}
|
|
{{ page.body|richtext|truncatewords:24 }}
|
|
{% endif %}
|
|
</section>
|
|
{% endblock %}
|
|
{% endif %}
|
|
|
|
|
|
{% block content %}
|
|
{% if object_list %}
|
|
{# list view #}
|
|
<section class="body summary">
|
|
{{ page.summary }}
|
|
<a href="?" class="go_back">{% trans "Go back to the publication" %}</a>
|
|
</section>
|
|
|
|
{% with list_paginator=paginator %}
|
|
{% include "aircox_cms/snippets/list.html" %}
|
|
{% endwith %}
|
|
{% else %}
|
|
{# detail view #}
|
|
<div class="content">
|
|
<section class="body">
|
|
{{ page.body|richtext}}
|
|
</section>
|
|
|
|
{% block content_extras %}{% endblock %}
|
|
|
|
<div class="post_content">
|
|
{% render_sections position="post_content" %}
|
|
</div>
|
|
|
|
<section class="comments">
|
|
{% include "aircox_cms/snippets/comments.html" %}
|
|
</section>
|
|
</div>
|
|
{% endif %}
|
|
{% endblock %}
|
|
|
|
|