mirror of
https://github.com/celogeek/go-comic-converter.git
synced 2025-05-25 00:02:37 +02:00
On kindle it's better to not add manually the panelview as it will unlock several features: - Animation - Adjust to screen size - Panel View It means, you can still have a panel view, but it's handled by kindle directly.
14 lines
552 B
XML
14 lines
552 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 }}_p{{ .Image.Part}}</title>
|
|
<link href="style.css" type="text/css" rel="stylesheet"/>
|
|
<meta name="viewport" content="width={{ .Image.Width }}, height={{ .Image.Height }}"/>
|
|
</head>
|
|
<body style="">
|
|
<div style="text-align:center;top:0.0%;">
|
|
<img width="{{ .Image.Width }}" height="{{ .Image.Height }}" src="../Images/{{ .Image.Id }}_p{{ .Image.Part}}.jpg"/>
|
|
</div>
|
|
</body>
|
|
</html> |