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
908 B
HTML
35 lines
908 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title></title>
|
|
<meta charset="utf-8">
|
|
<script src="paged.js/paged.polyfill.js"></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="section" id="start-matter"></section>
|
|
{{ content[0] }}
|
|
</section>
|
|
<section class="toc">
|
|
<h2>Contents</h2>
|
|
<ul>
|
|
{% for title in titles %}
|
|
<li class="toc-title"><a href="#{{ title }}">{{ title }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
</section>
|
|
<div id="contenteo"></div>
|
|
{% for section in content %}
|
|
{% if loop.index > 1 %}
|
|
<section class="section" id="{{ titles[loop.index] }}">
|
|
<h1>{{ titles[loop.index] }}</h1>
|
|
</section>
|
|
<section class="section" id="{{ titles[loop.index] }}">
|
|
{{ section }}
|
|
</section>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</div>
|
|
</body>
|
|
</html> |