mirror of
https://github.com/celogeek/go-comic-converter.git
synced 2025-05-25 00:02:37 +02:00
18 lines
493 B
XML
18 lines
493 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!DOCTYPE html>
|
|
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:epub="http://www.idpf.org/2007/ops">
|
|
<head>
|
|
<title>{{ .Title }}</title>
|
|
<meta charset="utf-8"/>
|
|
</head>
|
|
<body>
|
|
<nav epub:type="toc" id="toc">
|
|
<h1>Table of content</h1>
|
|
<ol>
|
|
<li><a href="Text/part.xhtml">Title</a></li>
|
|
{{ .TOC }}
|
|
<li><a href="Text/{{ .Last.Id }}_p{{ .Last.Part}}.xhtml">Last page</a></li>
|
|
</ol>
|
|
</nav>
|
|
</body>
|
|
</html> |