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