You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
750 B
27 lines
750 B
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head charset="UTF-8">
|
|
<title>{% block title %}Flask APP {% endblock %}</title>
|
|
<link rel="stylesheet" type="text/css" href="/css/style.css"/>
|
|
<link rel="stylesheet" type="text/css" href="/css/bootstrap.css"/>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
<h1>This is from the base ;)</h1>
|
|
|
|
{% with messages = get_flashed_messages() %}
|
|
{% if messages %}
|
|
<ul>
|
|
{% for message in messages %}
|
|
<li>{{ message }}</li>
|
|
{% endfor%}
|
|
</ul>
|
|
{% endif %}
|
|
{% endwith %}
|
|
|
|
{% block content %} {% endblock %}
|
|
<script src="/js/bootstrap.js">
|
|
</body>
|
|
</html>
|