RSCC-Page/themes/yunohost/templates/index.html

33 lines
852 B
HTML
Raw Permalink Normal View History

2025-02-06 18:05:35 +01:00
<!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>