31f43d5 by Arvind at 2013-01-07 | 1 | <!doctype html> |
af3c1ff by Arvind at 2013-01-07 | 2 | <title>Swtr</title> |
31f43d5 by Arvind at 2013-01-07 | 3 | <link rel=stylesheet type=text/css href="{{ url_for('static', filename='style.css') }}"> |
4 | <div class=page> |
|
af3c1ff by Arvind at 2013-01-07 | 5 | <h1>Swtrr</h1> |
31f43d5 by Arvind at 2013-01-07 | 6 | <div class=metanav> |
7 | {% if not session.logged_in %} |
|
8 | <a href="{{ url_for('login') }}">log in</a> |
|
9 | {% else %} |
|
10 | <a href="{{ url_for('logout') }}">log out</a> |
|
11 | {% endif %} |
|
12 | </div> |
|
13 | {% for message in get_flashed_messages() %} |
|
14 | <div class=flash>{{ message }}</div> |
|
15 | {% endfor %} |
|
16 | {% block body %}{% endblock %} |
|
17 | </div> |