summaryrefslogtreecommitdiffstats
path: root/app/templates/base.html.j2
diff options
context:
space:
mode:
Diffstat (limited to 'app/templates/base.html.j2')
-rw-r--r--app/templates/base.html.j218
1 files changed, 18 insertions, 0 deletions
diff --git a/app/templates/base.html.j2 b/app/templates/base.html.j2
new file mode 100644
index 0000000..b2c0957
--- /dev/null
+++ b/app/templates/base.html.j2
@@ -0,0 +1,18 @@
+<html>
+ <head>
+ <title>
+ Eternal Blume
+ </title>
+ <link href="/static/css/blure.css" rel="stylesheet">
+ <link href="https://fonts.googleapis.com/icon?family=Material+Icons|Inconsolata" rel="stylesheet">
+ {% block load_scripts %}
+ {% endblock %}
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ </head>
+ <body>
+ <div id="root">
+ {% block content %}
+ {% endblock %}
+ </div>
+ </body>
+</html>