diff options
| author | Alexis Metaireau <alexis@notmyidea.org> | 2011-03-10 17:32:53 +0000 |
|---|---|---|
| committer | Alexis Metaireau <alexis@notmyidea.org> | 2011-03-10 17:32:53 +0000 |
| commit | de708ce3efec2ab70b6b77781957766ae47f9068 (patch) | |
| tree | 6b2b3b43caea782d894ce9874e9b6632f14ef7ff /budget/templates/layout.html | |
| parent | fc569241bea388de32b38aa907bf2e527cd5039b (diff) | |
| download | ihatemoney-mirror-de708ce3efec2ab70b6b77781957766ae47f9068.zip ihatemoney-mirror-de708ce3efec2ab70b6b77781957766ae47f9068.tar.gz ihatemoney-mirror-de708ce3efec2ab70b6b77781957766ae47f9068.tar.bz2 | |
reshape the folder structure. Add conf files
Diffstat (limited to 'budget/templates/layout.html')
| -rw-r--r-- | budget/templates/layout.html | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/budget/templates/layout.html b/budget/templates/layout.html new file mode 100644 index 0000000..50f1884 --- /dev/null +++ b/budget/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> |
