summaryrefslogtreecommitdiff
path: root/templates/includes
diff options
context:
space:
mode:
Diffstat (limited to 'templates/includes')
-rw-r--r--templates/includes/layout.gohtml19
1 files changed, 19 insertions, 0 deletions
diff --git a/templates/includes/layout.gohtml b/templates/includes/layout.gohtml
new file mode 100644
index 0000000..adebd99
--- /dev/null
+++ b/templates/includes/layout.gohtml
@@ -0,0 +1,19 @@
+<!DOCTYPE html>
+<html lang="en">
+
+<head>
+ <meta charset="UTF-8">
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <title>SendSafe</title>
+ <link rel="stylesheet" href="/css/index.css" />
+ <script src="https://unpkg.com/turbolinks/dist/turbolinks.js" crossorigin="anonymous"></script>
+</head>
+
+<body>
+<header>
+ <a id="header-logo" href="/"></> SendSafe</a>
+</header>
+{{template "content" .}}
+</body>
+</html>