1
0
Fork 0
fiveg/templates/layout.html

19 lines
445 B
HTML

<!doctype html>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Interfejs administracyjny</title>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
<body>
<h1>Interfejs administracyjny</h1>
<form>
{% block body %}{% endblock %}
</form>
<footer>
Copyright &copy; B.&nbsp;G.&nbsp;Foundation
</footer>
</body>
{#- vim: set ft=jinja : #}