File size: 356 Bytes
e3a7c05 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
<!DOCTYPE html>
<html lang="en">
<head>
<title>{% block title %} {% endblock %}</title>
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='styles/style.css') }}">
<link rel="shortcut icon" href="{{ url_for('static', filename='favicon.ico') }}">
</head>
<body>
{% block content %}
{% endblock %}
</body>
</html>
|