32 lines
512 B
HTML
32 lines
512 B
HTML
{% extends "base.html" %}
|
|
|
|
{%- block head_title %}
|
|
{{ title }} :: RFCartography
|
|
{% endblock head_title %}
|
|
|
|
{%- block main %}
|
|
<h1>
|
|
{{ title }}
|
|
</h1>
|
|
{% for chapter in content %}
|
|
{% for paragraph in chapter %}
|
|
{% if loop.first %}
|
|
<h2>
|
|
{{ paragraph }}
|
|
</h2>
|
|
{% else %}
|
|
<p>
|
|
{% if paragraph is string %}
|
|
{{ paragraph }}
|
|
{% else %}
|
|
{% for line in paragraph %}
|
|
{{ line }}
|
|
<br />
|
|
{% endfor %}
|
|
{% endif %}
|
|
</p>
|
|
{% endif %}
|
|
{% endfor %}
|
|
{% endfor %}
|
|
{% endblock main %}
|