blob: 7c346444e9238050a6e42dc74d7ea35e4912f76b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<!DOCTYPE html>
<html>
<head>
<title>{{ block "title" . }}finserv{{ end }}</title>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link rel="stylesheet" href="{{ relURL "simple.css" }}" type="text/css"/>
</head>
<body>
<header>{{ block "header" . }}
<h1>Finances</h1>
{{ end }}</header>
<main>{{ block "main" . }}{{ end }}</main>
<footer>{{ block "footer" . }}
<p>finserv</p>
{{ end }}</footer>
</body>
</html>
|