cycles/period/templates/base.html

17 lines
431 B
HTML
Raw Normal View History

<!doctype html>
<title>{% block title %}{% endblock %} - Period</title>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
<nav>
<h1>Period</h1>
<ul>
</ul>
</nav>
<section class="content">
<header>
{% block header %}{% endblock %}
</header>
{% for message in get_flashed_messages() %}
<div class="flash">{{ message }}</div>
{% endfor %}
{% block content %}{% endblock %}
</section>