aboutsummaryrefslogtreecommitdiff
path: root/templates/layout.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/layout.html')
-rw-r--r--templates/layout.html34
1 files changed, 0 insertions, 34 deletions
diff --git a/templates/layout.html b/templates/layout.html
deleted file mode 100644
index 50f1884..0000000
--- a/templates/layout.html
+++ /dev/null
@@ -1,34 +0,0 @@
-<!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>