templates/wiki-page.html
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | {% extends "base.html" %}
{% block outline %}
<p class="subtitle"><strong><a href="/wiki">Return to Index</a></strong></p>
. <br>
{% if page.toc %}
	{% for h2 in page.toc %}
		{% if loop.last %}
			└── <a href="{{ h2.permalink | safe }}">{{ h2.title }}</a>  <br>
			{% if h2.children %}
				{% for h3 in h2.children %}
					{% if loop.last %}
						    └── <a href="{{ h3.permalink | safe }}">{{ h3.title }}</a> <br>
						{% break %}
					{% endif %}
					    ├── <a href="{{ h3.permalink | safe }}">{{ h3.title }}</a> <br>
				{% endfor %}
			{% endif %}
		{% else %}
			├──	<a href="{{ h2.permalink | safe }}">{{ h2.title }}</a>  <br>
			{% if h2.children %}
				{% for h3 in h2.children %}
					{% if loop.last %}
						│  └── <a href="{{ h3.permalink | safe }}">{{ h3.title }}</a> <br>
						{% break %}
					{% endif %}
					│  ├── <a href="{{ h3.permalink | safe }}">{{ h3.title }}</a> <br>
				{% endfor %}
			{% endif %}
		{% endif %}
	{% endfor %}
{% endif %}
{% endblock outline %}
{% block title %}
{{ page.title }}
{% endblock title %}
{% block content %}
{{ page.content | safe }}
{% endblock content %}
 |