aboutsummaryrefslogtreecommitdiff
path: root/templates/base.tpl
diff options
context:
space:
mode:
authorMitchell Riedstra <mitch@riedstra.dev>2023-01-02 01:14:34 -0500
committerMitchell Riedstra <mitch@riedstra.dev>2023-01-02 01:14:34 -0500
commit2d3b4c7fc74b377698cc2f554ae7ceac76bf616b (patch)
tree23715c80425a88f5d2f1258f9d2da8d32cea444d /templates/base.tpl
parent5f1642deee2d9a717d1a56232254e80db5c32031 (diff)
downloadpaste-2d3b4c7fc74b377698cc2f554ae7ceac76bf616b.tar.gz
paste-2d3b4c7fc74b377698cc2f554ae7ceac76bf616b.tar.xz
Remove stale go templates
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}}