mirror of
https://github.com/celogeek/go-comic-converter.git
synced 2025-05-25 16:22:37 +02:00
When autosplitdoublepage is activated, We will display a blank page after the full image, if necessary, for good rendering on a reader that support, double page rendering (like Apple Book).
14 lines
492 B
XML
14 lines
492 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>Page {{ .Image.Id }} Space</title>
|
|
<link href="style.css" type="text/css" rel="stylesheet"/>
|
|
<meta name="viewport" content="width={{ .Info.ViewWidth }}, height={{ .Info.ViewHeight }}"/>
|
|
</head>
|
|
<body style="">
|
|
<div style="text-align:center;top:0.0%;">
|
|
<h1>{{ if .Info.Manga }}←{{ else }}→{{ end }}</h1>
|
|
</div>
|
|
</body>
|
|
</html> |