1
0
mirror of https://github.com/lise-henry/crowbook synced 2024-09-30 09:01:24 +02:00
crowbook/templates/template.html

26 lines
478 B
HTML
Raw Normal View History

2016-02-18 22:05:54 +01:00
<!DOCTYPE html>
<html lang="{{lang}}">
<head>
<meta charset="utf-8">
<meta name="generator" content="crowbook">
<meta name="author" content="{{{author}}}">
2016-02-18 22:05:54 +01:00
<title>{{title}}</title>
2016-02-18 22:18:08 +01:00
<style type = "text/css">
2016-02-19 21:35:49 +01:00
{{{style}}}
2016-02-18 22:18:08 +01:00
body {
2016-02-19 21:35:49 +01:00
margin-left: 15%;
margin-right: 15%;
2016-02-18 22:18:08 +01:00
}
</style>
2016-02-19 21:35:49 +01:00
2016-02-18 22:05:54 +01:00
</head>
<body>
<header>
<h1 class="title">{{title}}</h1>
<h2 class="author">{{author}}</h2>
</header>
{{{content}}}
</body>
</html>