|
|
|
<!DOCTYPE html> |
|
<html lang="en"> |
|
<head> |
|
<meta charset="UTF-8"> |
|
<title>{% block title %}BookNest{% endblock %}</title> |
|
<link rel="stylesheet" href="{{ url_for('static', filename='styles.css') }}"> |
|
|
|
</head> |
|
<body> |
|
|
|
{% include 'navbar.html' %} |
|
|
|
|
|
{% with messages = get_flashed_messages(with_categories=true) %} |
|
{% if messages %} |
|
<div class="flash-messages"> |
|
{% for category, message in messages %} |
|
<div class="alert alert-{{ category }}">{{ message }}</div> |
|
{% endfor %} |
|
</div> |
|
{% endif %} |
|
{% endwith %} |
|
|
|
|
|
{% block content %} |
|
|
|
{% endblock %} |
|
|
|
|
|
{% include 'footer.html' %} |
|
</body> |
|
</html> |