epub-page template: removed separate h1 $title$.

The title is now presumed to be the h1 that begins the body
(if there is one).
This commit is contained in:
John MacFarlane 2012-10-11 09:04:31 -07:00
parent 3bbb793e41
commit 1e32f28208

View file

@ -2,16 +2,9 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title>$title$</title>
<link href="stylesheet.css" type="text/css" rel="stylesheet" /> <link href="stylesheet.css" type="text/css" rel="stylesheet" />
</head> </head>
<body> <body>
<h1>$title$</h1>
$if(toc)$
<div id="$idprefix$TOC">
$toc$
</div>
$endif$
$body$ $body$
</body> </body>
</html> </html>