mirror of https://github.com/mitsuhiko/flask.git
You can not 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
752 B
25 lines
752 B
7 years ago
|
<!doctype html>
|
||
|
<title>{% block title %}{% endblock %} - Flaskr</title>
|
||
|
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
|
||
|
<nav>
|
||
|
<h1><a href="{{ url_for('index') }}">Flaskr</a></h1>
|
||
|
<ul>
|
||
|
{% if g.user %}
|
||
|
<li><span>{{ g.user['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>
|