You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
620 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>{% block title %} {% endblock %}</title>
<link rel="stylesheet" href="{{url_for('static', filename='style_default.css')}}">
<!-- <script src="{{url_for('static', filename='addnew_panel.js')}}"></script> -->
</head>
<body>
<nav class="navbar-nav">
<li class="nav-item active">
<a class="nav-link" href="#">About</a>
</li>
</nav>
{% for message in get_flashed_messages() %}
<div class="alert alert-danger">{{ message }}</div>
{% endfor %}
{% block content %} {% endblock %}
</body>
</html>