blob: 26b56a9b7b8444b6822ea11c8526906d185b4de1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>{{ .Title }}</title>
<link rel="stylesheet" href="{{ "styles.css" | absURL }}">
</head>
<body>
<main>
{{ block "main" . }}
{{ end }}
</main>
<hr>
<footer>
<p>The source of this web site is available <a href="https://relvokcor.xyz/~andre4ik3/git/website.git/">here</a></p>
</footer>
</body>
</html>
|