23 lines
536 B
HTML
23 lines
536 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<link href="{{ url_for("static", filename="bootstrap/css/bootstrap.min.css") }}" rel="stylesheet">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
<title>
|
|
{% block title %}{% endblock %}
|
|
</title>
|
|
|
|
{% block style %}{% endblock %}
|
|
</head>
|
|
|
|
<body>
|
|
{% block content %}{% endblock %}
|
|
|
|
<script src="{{ url_for("static", filename="bootstrap/js/bootstrap.bundle.min.js")}}></script>
|
|
|
|
{% block script %}{% endblock %}
|
|
</body>
|
|
</html>
|