1
0
Fork 0
mirror of https://github.com/lise-henry/crowbook synced 2024-05-28 18:16:32 +02:00
crowbook/templates/epub3/titlepage.xhtml
2023-08-09 20:03:45 +02:00

24 lines
695 B
HTML

<?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" xml:lang="{{lang}}" lang="{{lang}}">
<head>
<meta charset = "utf-8" />
<meta name="generator" content="crowbook" />
<title>{{title_raw}}</title>
<link rel="stylesheet" type="text/css" href="stylesheet.css" />
</head>
<body>
<section epub:type = "titlepage">
<h2 class="author">{{author}}</h2>
<h1 class="title">{{title}}</h1>
{% if has_subtitle %}<h2 class="subtitle">{{subtitle}}</h2>{% endif %}
{% if has_autograph %}
<div id = "autograph">
{{autograph}}
</div>
{% endif %}
</section>
</body>
</html>