You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
504 B
HTML
25 lines
504 B
HTML
<header id="header">
|
|
<div class="center">
|
|
<h1 id="title">{{ config.SITE_NAME }}</h1>
|
|
</div>
|
|
<nav id="nav">
|
|
<ul class="center">
|
|
<p>
|
|
<a href="/">Home</a> x
|
|
<a href="/launchpad">Launchpad</a> x
|
|
<a href="/info">Info</a>
|
|
</p>
|
|
</ul>
|
|
</nav>
|
|
</header>
|
|
|
|
{% with messages = get_flashed_messages() %}
|
|
{% if messages %}
|
|
<div class="center">
|
|
{% for message in messages %}
|
|
<p>{{ message }}</p>
|
|
{% endfor %}
|
|
</div>
|
|
{% endif %}
|
|
{% endwith %}
|