Book / templates /base.html
anwesh2410's picture
Upload 39 files
54862ee verified
raw
history blame contribute delete
925 Bytes
<!-- templates/base.html -->
<!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') }}">
<!-- Include any other head elements or meta tags here -->
</head>
<body>
<!-- Include Navigation Bar -->
{% include 'navbar.html' %}
<!-- Flash Messages -->
{% 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 %}
<!-- Main Content -->
{% block content %}
<!-- Default content can go here -->
{% endblock %}
<!-- Include Footer -->
{% include 'footer.html' %}
</body>
</html>