Spaces:
Runtime error
Runtime error
File size: 486 Bytes
df42f36 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
<!doctype html>
<title>{% block title %}{% endblock %} - Ice Breaking Challenge</title>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
<nav>
<h1><a href="{{ url_for('index') }}">Ice Breaking Challenge</a></h1>
</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>
|