File size: 274 Bytes
1a11305 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
<!DOCTYPE html>
<html>
<head>
<title>My Website</title>
<link rel="stylesheet" href="{{ url_for('static', filename='style/style.css') }}">
</head>
<body>
{% include 'components/navbar.html' %}
<main>
{% block content %}{% endblock %}
</main>
</body>
</html>
|