iterations-xdex/templates/base.html
2020-02-28 13:09:29 +01:00

17 lines
420 B
HTML

<!DOCTYPE html>
<html lang='en'>
<head>
<meta charset="utf-8" />
<title>x-dex</title>
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='css/stylesheet.css')}}">
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='css/screens.css')}}">
{% block head %}
{% endblock %}
</head>
<body>
{% block page %}
{% endblock %}
</body>
{% block footer %}
{% endblock %}
</html>