Files
chronological/web/templates/layouts/base.html
2025-12-10 11:10:52 +01:00

22 lines
536 B
HTML

{{define "base"}}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Chronological</title>
<link rel="stylesheet" href="/static/css/style.css">
<script src="/static/js/htmx.min.js"></script>
</head>
<body>
<header class="app-header">
<h1>Chronological</h1>
</header>
<main class="app-main">
{{template "content" .}}
</main>
<script src="/static/js/app.js"></script>
</body>
</html>
{{end}}