templates/example_templates/base.html

20 lines
489 B
HTML
Raw Permalink Normal View History

2025-01-12 10:47:45 +00:00
{{define "base"}}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{.Title}}</title>
<link rel="stylesheet" type="text/css" href="/static/style.css">
</head>
<body>
<header>
{{ template "nav.html" .}}
</header>
<h1>{{.Title}}</h1>
<main>
{{ template "content" .}}
</main>
</body>
</html>