aboutsummaryrefslogtreecommitdiffstats
path: root/web_server/templates/base.htm
diff options
context:
space:
mode:
authorJokler <jokler@protonmail.com>2020-02-22 18:53:13 +0100
committerJokler <jokler@protonmail.com>2020-02-22 23:20:10 +0100
commit326cfa543c6263818aad7dec4a869bc8139ec14c (patch)
treebc55a0e79107a93bc3e605a0cae32926dc4c52fc /web_server/templates/base.htm
parentb9edd85baae9ee483a2d403c641801adc585d26d (diff)
downloadpokebot-326cfa543c6263818aad7dec4a869bc8139ec14c.tar.gz
pokebot-326cfa543c6263818aad7dec4a869bc8139ec14c.zip
Move web server related files into a folder
Diffstat (limited to 'web_server/templates/base.htm')
-rw-r--r--web_server/templates/base.htm15
1 files changed, 15 insertions, 0 deletions
diff --git a/web_server/templates/base.htm b/web_server/templates/base.htm
new file mode 100644
index 0000000..b8b2f49
--- /dev/null
+++ b/web_server/templates/base.htm
@@ -0,0 +1,15 @@
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ <meta charset="UTF-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <meta http-equiv="X-UA-Compatible" content="ie=edge">
+ <link href="/static/style.css" rel="stylesheet">
+ <title>{% block title %}{{ title }} - PokeBot{% endblock %}</title>
+ </head>
+ <body>
+ <main>
+ {% block content %}{% endblock %}
+ </main>
+ </body>
+</html>