aboutsummaryrefslogtreecommitdiff
path: root/budget/templates/layout.html
blob: 34e7f8b21eb038bf3d209e3f622ae90ea8e88406 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{% import "forms.html" as forms %}
<!DOCTYPE html>
<html>
<head>
<title>Account manager</title>
<link rel=stylesheet type=text/css href="{{ url_for('static', filename='main.css') }}">
</head>
<body>

<div class="container" class="span-24">
    <div id="title">
            <a href="/"><h1>Account manager ! <span class="small">Manage your shared expenses.</span></h1></a>
    <hr>
        <div class="fright" id="topmenu">
            {% block top_menu %}{% endblock %}
        </div>
    </div>
    {% for message in get_flashed_messages() %}
        <div class=info>{{ message }}</div>
    {% endfor %}
    {% block content %}
    {% endblock %}
    <div id="footer"></div>
</div>
</body>
</html>