aboutsummaryrefslogtreecommitdiff
path: root/layouts/_default/baseof.html
blob: a4c2f5619b7c1564cadb61ca1a0e233bfc6e6bf8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html lang="en">

<head>
	<meta charset="UTF-8">
	<meta name="viewport" content="width=device-width, initial-scale=1.0">
	<title>{{ .Page.Title }} - Ariel Costas</title>
</head>

<body>
	{{ partial "partials/header.html" . }}

	{{ block "main" . }}
	{{ end }}

	{{ partial "partials/footer.html" . }}
</body>

</html>