all parts of publication in a single html file
parent
6bec6915f7
commit
5f48f9f364
@ -1,3 +1,3 @@
|
|||||||
body{font-size: 12pt;}
|
body{font-size: 12pt;}
|
||||||
|
|
||||||
div#img img {width: 100%;}
|
div#content img {width: 50%;}
|
@ -0,0 +1,16 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<link rel="stylesheet" href="../static/style.css" />
|
||||||
|
<title>{{title}}</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<h1>{{ title }}</h1>
|
||||||
|
<p><time datetime="{{date}}">{{date}}</time></p>
|
||||||
|
<div id="content">
|
||||||
|
{{ content }}
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|
@ -0,0 +1,9 @@
|
|||||||
|
<div class="img">
|
||||||
|
<img src="{{ imgsrc }}" />
|
||||||
|
</div>
|
||||||
|
<div class="text">
|
||||||
|
{{ text }}
|
||||||
|
</div>
|
||||||
|
<div class="part">
|
||||||
|
Part {{part}} of {{partof}}
|
||||||
|
</div>
|
Loading…
Reference in New Issue