1
0
mirror of https://github.com/lise-henry/crowbook synced 2024-11-18 00:13:55 +01:00
crowbook/templates/html_dir/index.html

38 lines
821 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>
<link rel = "stylesheet" href = "stylesheet.css" type = "text/css" />
<script>
{{{script}}}
</script>
</head>
<body>
<nav id = "nav">
<h2><a href = "index.html">{{{title}}}</a></h2>
{{{toc}}}
</nav>
<div id = "content">
<div id = "page">
<header>
<div id = "menu">
<img id = "menu-button" onclick="toggle();"
src="menu.svg" alt = "Menu" title = "Menu" />
</div>
<h1 class = "title">{{{title}}}</h1>
<h2 class = "author">{{{author}}}</h2>
</header>
{{{content}}}
</div>
</div>
</body>
</html>