Files
findings/templates/base.html

31 lines
760 B
HTML
Raw Normal View History

2025-08-10 23:42:02 +02:00
<!-- base.html -->
<!DOCTYPE html>
<html>
<head>
<title>{% block title %}My Site{% endblock %}</title>
<link rel="stylesheet" href="/static/main.css">
</head>
<body>
{% include 'topbar.html' %}
<!-- Flashed messages -->
{% with messages = get_flashed_messages(with_categories=true) %}
{% if messages %}
<div class="flashed-messages">
{% for category, message in messages %}
<div class="alert alert-{{ category }}">{{ message }}</div>
{% endfor %}
</div>
{% endif %}
{% endwith %}
<!-- This block is the “Outlet” equivalent -->
<main>
{% block content %}
<!-- Child templates will fill this -->
{% endblock %}
</main>
</body>
</html>