Merge massage scripts (for templating), prettify HTML

This commit is contained in:
Aarni Koskela
2022-10-10 12:31:20 +03:00
parent 335cf15064
commit aa060b10a4
8 changed files with 144 additions and 106 deletions

15
template/_base.html Normal file
View File

@@ -0,0 +1,15 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<style>{% include "style.css" %}</style>
<title>{% block title %}Koodiklinikan palkkakysely, {{year}}{% endblock %}</title>
</head>
<body class="{{ body_class|default("") }}">
{% block body %}{% endblock %}
{% block footer %}{% endblock %}
</body>
</html>