34 lines
783 B
HTML
34 lines
783 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}{{ title }}{% endblock %}
|
|
|
|
{% block main %}
|
|
<img src="{{ url_for('static', filename='logo.png') }}" height="200px">
|
|
<h1>{{ title }}</h1>
|
|
{% if not obj.no_canons %}
|
|
{% autoescape false %}
|
|
<p>
|
|
{% if obj.history %}
|
|
{{ obj.history }}
|
|
{% endif %}
|
|
|
|
<table>
|
|
<tr>
|
|
<th>canon</th>
|
|
<th>text</th>
|
|
</tr>
|
|
{% for canon in obj.canons %}
|
|
<tr>
|
|
<td style="text-align: center"><a href="#{{ canon.canon }}">{{ canon.canon }}</a></td>
|
|
<td id="{{ canon.canon }}">{{ canon.text }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
</p>
|
|
{% endautoescape %}
|
|
{% else %}
|
|
<h3 style="text-align: center;">
|
|
This council has no canons.
|
|
</h3>
|
|
{% endif %}
|
|
{% endblock %} |