diff options
| author | Alexis Metaireau <alexis@notmyidea.org> | 2011-03-10 02:37:21 +0000 |
|---|---|---|
| committer | Alexis Metaireau <alexis@notmyidea.org> | 2011-03-10 02:37:21 +0000 |
| commit | b3db90545c5bd76d4acb6abfe5356e87b0f0cdcf (patch) | |
| tree | d3ddbd294fc79428948e9dfcb9a4be89702e60e7 /templates/layout.html | |
| download | ihatemoney-mirror-b3db90545c5bd76d4acb6abfe5356e87b0f0cdcf.zip ihatemoney-mirror-b3db90545c5bd76d4acb6abfe5356e87b0f0cdcf.tar.gz ihatemoney-mirror-b3db90545c5bd76d4acb6abfe5356e87b0f0cdcf.tar.bz2 | |
initial import
Diffstat (limited to 'templates/layout.html')
| -rw-r--r-- | templates/layout.html | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/templates/layout.html b/templates/layout.html new file mode 100644 index 0000000..50f1884 --- /dev/null +++ b/templates/layout.html @@ -0,0 +1,34 @@ +<!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"> + <div class="span-18"> + <a href="/"><h1>Account manager ! <span class="small">Manage your shared expenses.</span></h1></a> + </div> + <div class="span-6 last" id="topmenu"> + <ul> + <li><a class="awesome large orange button" href="{{ url_for("add_bill") }}">Add a bill !</a></li> + </ul> + </div> + </div> + <hr> + <div id="content" class="span-24"> + + {% for message in get_flashed_messages() %} + <div class=info>{{ message }}</div> + {% endfor %} + + {% block content %} + {% endblock %} + + </div> + <div id="footer"></div> +</div> +</body> +</html> |
