summaryrefslogtreecommitdiffstats
path: root/templates/base.tmpl
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--templates/base.tmpl16
1 files changed, 16 insertions, 0 deletions
diff --git a/templates/base.tmpl b/templates/base.tmpl
new file mode 100644
index 0000000..fdee53b
--- /dev/null
+++ b/templates/base.tmpl
@@ -0,0 +1,16 @@
+<!doctype html>
+<html>
+<head>
+ <title>node-paste</title>
+ <link href="/static/main.css" rel="stylesheet" type="text/css" />
+ {{#styles}}
+ <link href="{{name}}" rel="stylesheet" type="text/css" />
+ {{/styles}}
+</head>
+
+<body>
+ {{+ content}}
+ Nothing here.
+ {{/ content}}
+</body>
+</html>