mirror of
https://github.com/lise-henry/crowbook
synced 2024-11-18 00:13:55 +01:00
26 lines
478 B
HTML
26 lines
478 B
HTML
<!DOCTYPE html>
|
|
<html lang="{{lang}}">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="generator" content="crowbook">
|
|
<meta name="author" content="{{{author}}}">
|
|
<title>{{title}}</title>
|
|
<style type = "text/css">
|
|
{{{style}}}
|
|
body {
|
|
margin-left: 15%;
|
|
margin-right: 15%;
|
|
}
|
|
</style>
|
|
|
|
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1 class="title">{{title}}</h1>
|
|
<h2 class="author">{{author}}</h2>
|
|
</header>
|
|
{{{content}}}
|
|
</body>
|
|
</html>
|