mirror of
https://github.com/kovidgoyal/calibre.git
synced 2026-01-07 04:30:19 -05:00
26 lines
429 B
Cheetah
26 lines
429 B
Cheetah
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
${head_content}$
|
|
</head>
|
|
<body>
|
|
|
|
<div class="toc">
|
|
Table of contents
|
|
${print toc()}$
|
|
</div>
|
|
|
|
${ebookContent}$
|
|
|
|
${if prevLink:}$
|
|
<a href="${prevLink}$">previous page</a>
|
|
${:endif}$
|
|
|
|
${if nextLink:}$
|
|
<a href="${nextLink}$">next page</a>
|
|
${:endif}$
|
|
|
|
|
|
</body>
|
|
</html>
|