17 lines
540 B
HTML
17 lines
540 B
HTML
|
<!doctype html>
|
||
|
<html>
|
||
|
<head>
|
||
|
{% block head %}
|
||
|
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
|
||
|
<link type="text/css" rel="stylesheet" href="{{ url_for('static', filename='stylesheets/styles.css') }}" />
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title>{% block title %}{% endblock %}</title>
|
||
|
{% endblock %}
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="content">
|
||
|
{% block content %}
|
||
|
{% endblock %}
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|