You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.0 KiB
HTML
35 lines
1.0 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title></title>
|
|
<meta charset="utf-8">
|
|
<script src="paged.js/paged.polyfill.js"></script>
|
|
<script src="plugins/marginNotes.js" type="text/javascript"></script>
|
|
<link href="paged.js/pagedjs.css" rel="stylesheet" type="text/css">
|
|
<link rel="stylesheet" type="text/css" href="print_style.css">
|
|
</head>
|
|
<body>
|
|
<section class="toc">
|
|
<h1>Contents</h1>
|
|
<ul>
|
|
{% for title in titles %}
|
|
{% if loop.index > 0 %}
|
|
<li class="toc-title"><a href="#section-{{ loop.index + 2 }}">{{ title }}</a></li>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</ul>
|
|
</section>
|
|
<div id="contenteo">
|
|
{% for section in content %}
|
|
{% if loop.index > 0 %}
|
|
<!--<section id="section-{{ loop.index + 1 }}" class="section{% if loop.index == 6 %} loops{% endif %}">-->
|
|
<section id="section-{{ loop.index + 1 }}" class="section">
|
|
{{ section }}
|
|
</section>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|