Files
kisukalat.go/templates/layout.html
2025-09-23 23:20:42 +03:00

21 lines
343 B
HTML

{{define "layout"}}
<!DOCTYPE html>
<html lang="en">
<head>
<title>{{block "title" .}}Kisukalat.xyz{{end}}</title>
<meta charset="UTF-8">
<link rel="stylesheet" href="/static/style.css">
</head>
<body>
{{template "header.html" .}}
<main>
{{block "content" .}} {{end}}
{{template "footer.html" .}}
</main>
</body>
</html>
{{end}}