Adapt static files for flask

This commit is contained in:
Felix Blanke 2023-08-19 22:01:25 +02:00
parent 27c196ee18
commit c416ca590b
3 changed files with 19 additions and 0 deletions

View File

@ -1,3 +1,13 @@
p {
font-family: sans-serif;
margin: 10px;
}
a {
font-family: sans-serif;
color: black;
}
.dataframe {
border-collapse: collapse;
margin: 25px 0;

9
templates/base.html Normal file
View File

@ -0,0 +1,9 @@
<!doctype html>
<link rel='stylesheet' href="{{ url_for('static', filename='style.css') }}" />
<script src="{{ url_for('static', filename='sorttable.js') }}"></script>
<title>Digitale Beschäftigtenbefragung</title>
<p><a href="https://zusammen-geht-mehr.verdi.de/beschaeftigtenbefragung">Karte der digitalen Beschäftigtenbefragung</a></p>
{{ tables|safe }}