aboutsummaryrefslogtreecommitdiff
path: root/templates/web/base.html
diff options
context:
space:
mode:
authorElena ``of Valhalla'' Grandi <valhalla@trueelena.org>2020-11-16 08:46:37 +0100
committerElena ``of Valhalla'' Grandi <valhalla@trueelena.org>2020-11-16 08:46:37 +0100
commit74f9c6a49fad7fd6dba3d56ec525dc6ece1894d1 (patch)
tree2a58c36e3e201eee6f6f7bbe10cabb083d26dd08 /templates/web/base.html
parentd856f5bd3d79c92d01336b9cb28548f28c71a56b (diff)
Basic template from lesanaweb, to improve upon
Diffstat (limited to 'templates/web/base.html')
-rw-r--r--templates/web/base.html30
1 files changed, 30 insertions, 0 deletions
diff --git a/templates/web/base.html b/templates/web/base.html
new file mode 100644
index 0000000..98139fe
--- /dev/null
+++ b/templates/web/base.html
@@ -0,0 +1,30 @@
+<!doctype html>
+<html>
+ <head>
+ <meta charset="UTF-8">
+ <meta name="viewport" content="width=device-width, height=device-height, user-scalable=no, initial-scale=1.0"/>
+ <title>{% block title %}{% endblock %}</title>
+ <style>
+ body {
+ margin: 5% auto;
+ background: #f2f2f2;
+ color: #444444;
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
+ font-size: 16px;
+ line-height: 1.8;
+ text-shadow: 0 1px 0 #ffffff;
+ max-width: 73%;
+ }
+ footer { margin-top: 2em; }
+ code {background: white;}
+ a {border-bottom: 1px solid #444444; color: #444444; text-decoration: none;}
+ a:hover {border-bottom: 0;}
+ dl { display: grid; grid-template-columns: auto 1fr; }
+ dt { font-weight: bold; }
+ </style>
+ {% block extraheader %}{% endblock %}
+ </head>
+ <body>
+ {% block content %}{% endblock %}
+ </body>
+</html>