2024-07-27 01:05:56 +00:00
|
|
|
{% extends 'default/templates/renderable/commentable.html' %}
|
|
|
|
|
2024-10-29 11:19:03 +00:00
|
|
|
{% block header %}
|
|
|
|
|
|
|
|
{% if mode == 'full' %}
|
|
|
|
<h1>{{ content.title.render('inline') }}</h1>
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{{ super() }}
|
|
|
|
|
|
|
|
{% endblock %}
|
|
|
|
|
2024-07-27 01:05:56 +00:00
|
|
|
{% block content %}
|
|
|
|
|
2024-09-01 16:52:27 +00:00
|
|
|
<div class="text">
|
|
|
|
{{ content.text.render() }}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="pieces">
|
|
|
|
{% for piece in content.pieces_ordered %}
|
|
|
|
{{ piece.render('full') }}
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
2024-07-27 01:05:56 +00:00
|
|
|
|
2024-10-14 14:54:17 +00:00
|
|
|
<div class="claim"><sub><em>This has apparently been a communique of and by the Erisian Liberation Front.</em></sub></div>
|
|
|
|
|
2024-07-27 01:05:56 +00:00
|
|
|
{% endblock %}
|