Files
Eden Kirin 264858b81e More pages
2023-10-24 09:54:23 +02:00

28 lines
676 B
Plaintext

{{ title := "Hello world" }}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css">
</head>
<body>
<div class="container">
<h1>{{ title }}</h1>
<p>
<a href="/">Frontpage</a>
<a href="/users">Users</a>
<a href="/about">About</a>
</p>
<main>
{{ yield mainContent() }}
</main>
</div>
</body>
</html>