mirror of
https://github.com/celogeek/go-comic-converter.git
synced 2025-05-24 15:52:38 +02:00
20 lines
508 B
XML
20 lines
508 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>{{ .Info.Title }}</title>
|
|
<meta charset="utf-8"/>
|
|
</head>
|
|
<body>
|
|
<nav xmlns:epub="http://www.idpf.org/2007/ops" epub:type="toc" id="toc">
|
|
<ol>
|
|
<li><a href="Text/{{ .Image.Id }}.xhtml">{{ .Info.Title }}</a></li>
|
|
</ol>
|
|
</nav>
|
|
<nav epub:type="page-list">
|
|
<ol>
|
|
<li><a href="Text/{{ .Image.Id }}.xhtml">{{ .Info.Title }}</a></li>
|
|
</ol>
|
|
</nav>
|
|
</body>
|
|
</html> |