28 lines
599 B
HTML
28 lines
599 B
HTML
{% extends 'default/templates/renderable/commentable.html' %}
|
|
|
|
{% block header %}
|
|
|
|
{% if mode == 'full' %}
|
|
<h1>{{ content.title.render('inline') }}</h1>
|
|
{% endif %}
|
|
|
|
{{ super() }}
|
|
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<div class="text">
|
|
{{ content.text.render() }}
|
|
</div>
|
|
|
|
<div class="pieces">
|
|
{% for piece in content.pieces_ordered %}
|
|
{{ piece.render('full') }}
|
|
{% endfor %}
|
|
</div>
|
|
|
|
<div class="claim"><sub><em>This has apparently been a communique of and by the Erisian Liberation Front.</em></sub></div>
|
|
|
|
{% endblock %}
|