bundled/flask/examples/flaskr/templates/layout.html @ b0bcc35b016a
web: display branch name on index if other than 'default'
author |
Kevin Berridge <kberridge@pointeblank.net> |
date |
Tue, 04 Sep 2012 13:03:55 -0400 |
parents |
f33efe14bff1 |
children |
(none) |
<!doctype html>
<title>Flaskr</title>
<link rel=stylesheet type=text/css href="{{ url_for('static', filename='style.css') }}">
<div class=page>
<h1>Flaskr</h1>
<div class=metanav>
{% if not session.logged_in %}
<a href="{{ url_for('login') }}">log in</a>
{% else %}
<a href="{{ url_for('logout') }}">log out</a>
{% endif %}
</div>
{% for message in get_flashed_messages() %}
<div class=flash>{{ message }}</div>
{% endfor %}
{% block body %}{% endblock %}
</div>