2024-04-29 16:16:00 +00:00
|
|
|
{% extends 'default/templates/renderable/commentable.html' %}
|
2024-04-12 19:22:00 +00:00
|
|
|
|
2024-06-03 15:50:44 +00:00
|
|
|
{% block header %}
|
|
|
|
|
|
|
|
{% if mode == 'full' %}
|
|
|
|
|
|
|
|
{% if content.lead_image_id %}
|
2024-07-27 01:05:56 +00:00
|
|
|
|
|
|
|
<div class="lead-image">
|
|
|
|
{{ content.lead_image.render('inline') }}
|
|
|
|
</div>
|
|
|
|
|
2024-06-03 15:50:44 +00:00
|
|
|
{% endif %}
|
|
|
|
|
2024-06-15 14:19:08 +00:00
|
|
|
<h1 {% if content.lead_image_id %}class="on-lead-image"{% endif %}>{{ content.title.render('inline') }}</h1>
|
2024-05-07 20:54:45 +00:00
|
|
|
|
2024-04-14 13:56:36 +00:00
|
|
|
{% endif %}
|
2024-05-07 20:54:45 +00:00
|
|
|
|
2024-10-26 18:31:31 +00:00
|
|
|
{{ super() }}
|
|
|
|
|
2024-06-03 15:50:44 +00:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
2024-05-07 20:54:45 +00:00
|
|
|
{% if mode == 'full' %}
|
|
|
|
{{ content.text.render() }}
|
|
|
|
{% else %}
|
|
|
|
{{ content.teaser.render() }}
|
|
|
|
{% endif %}
|
2024-04-12 19:22:00 +00:00
|
|
|
{% endblock %}
|