blob: 450f9c8f5702aa972617984a2d4a7be65ac44f40 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{{ define "base" }}
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" />
<link rel="stylesheet" href="/static/css/main.css">
<link rel="shortcut icon" href="/static/img/favicon.ico", type='image/x-icon'>
<!-- <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Ubuntu+Mono:400,700"> -->
<title>{{ template "title" .}} - DED</title>
</head>
<body>
<div class="content">
<header>
{{ template "nav" . }}
</header>
<main>
{{ template "main" . }} <!-- DONT FORGET THE DOT!!! -->
</main>
</div>
</body>
</html>
{{ end }}
|