blob: 23f39e396b7dadacb368b89a52103d70e433c1fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!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"/>
</head>
<body>
<header>{{ block "header" . }}
<h1>finserv</h1>
{{ end }}</header>
<main>{{ block "main" . }}{{ end }}</main>
<footer>{{ block "footer" . }}
<p>finserv</p>
{{ end }}</footer>
</body>
</html>
|