33 lines
852 B
HTML
33 lines
852 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta content="IE=edge" http-equiv="X-UA-Compatible" />
|
||
|
<meta content="text/html; charset=UTF-8" http-equiv="content-type" />
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
|
||
|
<meta name="robots" content="index, follow">
|
||
|
<title>{{ section.title }}</title>
|
||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/water.css@2/out/water.css">
|
||
|
<style>
|
||
|
body {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
justify-content: center;
|
||
|
min-height: 100vh;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<main>
|
||
|
{{ section.content | safe }}
|
||
|
</main>
|
||
|
<footer>
|
||
|
<div id="footer-container">
|
||
|
<p>YunoHost</p>
|
||
|
</div>
|
||
|
</footer>
|
||
|
</body>
|
||
|
|
||
|
</html>
|