webweav.ing/ui/html/base.tmpl.html

17 lines
361 B
HTML
Raw Normal View History

2024-01-22 20:43:46 +00:00
{{define "base"}}
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="/static/css/main.css">
<title>RSS Generator</title>
<script src="/static/js/htmx.min.js"></script>
</head>
<body>
<main>
{{template "main" .}}
</main>
</body>
</html>
{{end}}