bundled/flask/examples/flaskr/templates/layout.html @ f305fba940c0
Add a blue border on draft rev in the index
| author | Christophe de Vienne <cdevienne@gmail.com> |
|---|---|
| date | Tue, 28 Oct 2014 11:16:39 +0100 |
| 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>