summaryrefslogtreecommitdiff
path: root/static/templates/base.html
diff options
context:
space:
mode:
authormrw1593 <botahamec@outlook.com>2023-05-15 21:42:47 -0400
committermrw1593 <botahamec@outlook.com>2023-05-29 10:46:04 -0400
commite38854c7db0fe6f006304d7f638b6aa190fc2d87 (patch)
treeeb730768a5f9c68f20c3b20a180cb1ab327a2de5 /static/templates/base.html
parent3f0cfb69f2ab1dda4425fe871a6cbf3b4bfb8dc3 (diff)
Started on frontend
Diffstat (limited to 'static/templates/base.html')
-rw-r--r--static/templates/base.html16
1 files changed, 16 insertions, 0 deletions
diff --git a/static/templates/base.html b/static/templates/base.html
new file mode 100644
index 0000000..2d9f8fd
--- /dev/null
+++ b/static/templates/base.html
@@ -0,0 +1,16 @@
+<!DOCTYPE html>
+<html lang="{{lang()}}">
+ <head>
+ <title>{% block title %}{% endblock title %}</title>
+ <meta charset="utf-8" />
+ <meta name="viewport" content="width=device-width, initial-scale=1" />
+ <link rel="stylesheet" href="/style.css" />
+ {% block head %}{% endblock head %}
+ </head>
+ <body>
+ {% block content %}{% endblock content %}
+ <footer>
+ <div id="copyright">&copy; 2023 Amplify Education Inc.</div>
+ </footer>
+ </body>
+</html>