diff options
-rw-r--r-- | default.epub3 | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/default.epub3 b/default.epub3 index 57f090b6a..6e38b4c77 100644 --- a/default.epub3 +++ b/default.epub3 @@ -21,16 +21,18 @@ $endfor$ </head> <body> $if(titlepage)$ - <h1 class="title">$title$</h1> + <section epub:type="titlepage"> + <h1 class="title">$title$</h1> $if(subtitle)$ - <h1 class="subtitle">$subtitle$</h1> + <h1 class="subtitle">$subtitle$</h1> $endif$ $for(author)$ - <h2 class="author">$author$</h2> + <h2 class="author">$author$</h2> $endfor$ $if(date)$ - <h3 class="date">$date$</h3> + <h3 class="date">$date$</h3> $endif$ + </section> $else$ $body$ $endif$ |