16 lines
321 B
HTML
16 lines
321 B
HTML
{{define "about"}}
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>{{.Title}}</title>
|
|
<link rel="stylesheet" href="{{.StaticPath}}/style.css">
|
|
<script src="{{.StaticPath}}/app.js" defer></script>
|
|
</head>
|
|
<body>
|
|
{{template "navbar" .}}
|
|
{{.AboutContent}}
|
|
{{template "cookie_banner" .}}
|
|
</body>
|
|
</html>
|
|
{{end}}
|