21 lines
343 B
HTML
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}}
|