31 lines
760 B
HTML
31 lines
760 B
HTML
|
|
<!-- 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>
|