aboutsummaryrefslogtreecommitdiff
path: root/epub/templates/title-page.html
blob: de0f55f0ee3b783c1ffb773732ed274110b616fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<html xmlns="http://www.w3.org/1999/xhtml"
    xmlns:py="http://genshi.edgewall.org/">
<head>
  <title>${book.title}</title>
  <style type="text/css">
.title, .authors {
  text-align: center;
}
span.author {
  margin: 1em;
}
  </style>
</head>
<body>
  <h1 class="title">${book.title}</h1>
  <h3 class="authors">
  <py:for each="creator, _ in book.creators">
  <span class="author">$creator</span>
  </py:for>
  </h3>
</body>
</html>
bgstack15