Spaces:
Runtime error
Runtime error
<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> | |