24 lines
763 B
HTML
24 lines
763 B
HTML
<!doctype html>
|
|
<title>{% block title %}{% endblock %} - contentmatcher </title>
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
|
|
<nav>
|
|
<h1><a href="{{ url_for('menu.index') }}">contentmatcher</a></h1>
|
|
<ul>
|
|
{% if username %}
|
|
<li><span>{{username}}</span>
|
|
<li><a href="{{ url_for('auth.logout') }}">Log Out</a>
|
|
{% else %}
|
|
<li><a href="{{ url_for('auth.register') }}">Register</a>
|
|
<li><a href="{{ url_for('auth.login') }}">Log In</a>
|
|
{% endif %}
|
|
</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> |