diff options
Diffstat (limited to 'src/templates/base.html')
-rw-r--r-- | src/templates/base.html | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/templates/base.html b/src/templates/base.html new file mode 100644 index 0000000..98e5787 --- /dev/null +++ b/src/templates/base.html @@ -0,0 +1,17 @@ +<!DOCTYPE html> +<html> + +<head> + <title>Cloud Maker</title> + <link rel="stylesheet" href="/static/style.css"> + <script src="/static/script.js"></script> +</head> + +<body> + <main> + {{ template "main" . }} + </main> +</body> + +</html> + |