blob: 58122a047f5e4833ebf1307559412bec6702eef8 (
plain) (
tree)
|
|
{{ 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>
<header>
{{ template "nav" . }}
</header>
<main>
{{ template "main" . }} <!-- DONT FORGET THE DOT!!! -->
</main>
</body>
</html>
{{ end }}
|