diff options
author | syn <isaqtm@gmail.com> | 2020-03-16 22:17:48 +0300 |
---|---|---|
committer | syn <isaqtm@gmail.com> | 2020-03-16 22:17:48 +0300 |
commit | 977c7c38ff4196f43c4784308d81fd7e6a471511 (patch) | |
tree | 3e53843c181a60ec7d2b3b1d4dfdf4868859c3a7 /app/templates/base.html.j2 | |
download | blure-977c7c38ff4196f43c4784308d81fd7e6a471511.tar.gz |
Init commit
Diffstat (limited to 'app/templates/base.html.j2')
-rw-r--r-- | app/templates/base.html.j2 | 18 |
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> |