calibre/resources/templates/html_export_default_index.tmpl
2010-10-14 18:18:18 +02:00

28 lines
682 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>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link rel="schema.DC" href="http://purl.org/dc/elements/1.1/" />
<link rel="schema.DCTERMS" href="http://purl.org/dc/terms/" />
<title></title>
${for item in meta:}$
<meta ${print 'name="DC.'+item['name']+'"',}$ ${print 'content="'+item['value']+'"',}$ />
${:endfor}$
</head>
<body>
${for title in meta.titles():}$
<h1>${print title}$</h1>
${:endfor}$
${print ', '.join(meta.creators())}$
<h1>Table of contents</h1>
${toc}$
</body>
</html>