mirror of
https://github.com/celogeek/go-comic-converter.git
synced 2025-05-25 08:12:36 +02:00
16 lines
517 B
XML
16 lines
517 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>
|
|
<meta charset="utf-8" />
|
|
<title>Part {{ .Part }}</title>
|
|
<link href="style.css" type="text/css" rel="stylesheet"/>
|
|
<meta name="viewport" content="width={{ .Info.ViewWidth }}, height={{ .Info.ViewHeight }}"/>
|
|
</head>
|
|
<body>
|
|
<h2>{{ .Info.Title }}</h2>
|
|
{{ if gt .Total 1 }}
|
|
<h3>Part {{ .Part }} / {{ .Total }}</h3>
|
|
{{ end }}
|
|
</body>
|
|
</html> |