mirror of
https://github.com/kovidgoyal/calibre.git
synced 2026-01-07 04:30:19 -05:00
28 lines
682 B
Cheetah
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>
|