aboutsummaryrefslogtreecommitdiff
path: root/templates/base.tpl
diff options
context:
space:
mode:
Diffstat (limited to 'templates/base.tpl')
-rw-r--r--templates/base.tpl21
1 files changed, 0 insertions, 21 deletions
diff --git a/templates/base.tpl b/templates/base.tpl
deleted file mode 100644
index ec1aeb5..0000000
--- a/templates/base.tpl
+++ /dev/null
@@ -1,21 +0,0 @@
-{{define "base"}}
-<!DOCTYPE html>
-<html lang="en">
-<head>
- <meta charset="UTF-8">
- <link rel="stylesheet" href="/static/style.css" defer>
- <title>{{template "title" .}}</title>
-</head>
-
-<nav>
- <a href="/">Home</a>
- <div style="display: block; float: right;">
- </div>
-</nav>
-<body>
-
-{{template "content" .}}
-
-</body>
-</html>
-{{end}}