dongwook-chan's picture
Update
8241e7f
raw
history blame
453 Bytes
<!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') }}"><span class="ice-text-mini">ICE</span>BREAKER</a></h1>
</nav>
<section class="content">
{% for message in get_flashed_messages() %}
<div class="flash">{{ message }}</div>
{% endfor %}
{% block content %}{% endblock %}
</section>