aboutsummaryrefslogtreecommitdiff
path: root/gn3/templates/base.html
diff options
context:
space:
mode:
Diffstat (limited to 'gn3/templates/base.html')
-rw-r--r--gn3/templates/base.html17
1 files changed, 17 insertions, 0 deletions
diff --git a/gn3/templates/base.html b/gn3/templates/base.html
new file mode 100644
index 0000000..c1070ed
--- /dev/null
+++ b/gn3/templates/base.html
@@ -0,0 +1,17 @@
+{% from "common-macros.html" import flash_messages%}
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ <meta charset="utf-8" />
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
+
+ <title>Genenetwork 3: {%block title%}{%endblock%}</title>
+
+ {%block css%}{%endblock%}
+ </head>
+
+ <body>
+ {%block content%}{%endblock%}
+ {%block js%}{%endblock%}
+ <body>
+</html>