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.
|
|
|
<!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>
|
|
|
|
<ul class="navbar-nav">
|
|
|
|
<li class="nav-item active">
|
|
|
|
<a class="nav-link" href="{{ url_for('create') }}">New</a>
|
|
|
|
</li>
|
|
|
|
|
|
|
|
<li class="nav-item active">
|
|
|
|
<a class="nav-link" href="#">About</a>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
{% for message in get_flashed_messages() %}
|
|
|
|
<div class="alert alert-danger">{{ message }}</div>
|
|
|
|
{% endfor %}
|
|
|
|
{% block content %} {% endblock %}
|
|
|
|
</body>
|
|
|
|
</html>
|