aboutsummaryrefslogtreecommitdiff
path: root/budget/templates/home.html
diff options
context:
space:
mode:
authorAlexis Metaireau <alexis@notmyidea.org>2011-08-21 03:16:54 +0200
committerAlexis Metaireau <alexis@notmyidea.org>2011-08-21 03:16:54 +0200
commit85549cc98d726f689e93ddbd20d6b25e7ff7b4b1 (patch)
treee87f04024038f3ae25d19dbcad08cf0ca0f438db /budget/templates/home.html
parenta6825cdcb73421a0443b14130c89e2cc545a2ab9 (diff)
downloadihatemoney-mirror-85549cc98d726f689e93ddbd20d6b25e7ff7b4b1.zip
ihatemoney-mirror-85549cc98d726f689e93ddbd20d6b25e7ff7b4b1.tar.gz
ihatemoney-mirror-85549cc98d726f689e93ddbd20d6b25e7ff7b4b1.tar.bz2
graph some stuff from the spiral website
Diffstat (limited to 'budget/templates/home.html')
-rw-r--r--budget/templates/home.html45
1 files changed, 28 insertions, 17 deletions
diff --git a/budget/templates/home.html b/budget/templates/home.html
index 7cead45..f29ae30 100644
--- a/budget/templates/home.html
+++ b/budget/templates/home.html
@@ -1,26 +1,37 @@
{% extends "layout.html" %}
-{% block sidebar %}
-{% include "recent_projects.html" %}
+
+{% block sidebar_wrapper %}{% endblock %}
+
+{% block header %}
+<div id="header">
+ <div class="slide">
+ <h1><span>Manage your shared <br>expenses easily</span></h1>
+ <a href="about.html" class="about_link">Try out the demo</a>
+ </div>
+</div>
{% endblock %}
-{% block content %}
+{% block container %}
+<div class="container-fluid">
+ <div class="content">
-<h2>Welcome on your budget manager</h2>
-<p>You're sharing a house? are going on holidays with friends? are simply sharing money with others? We can help!</p>
-<div class="row">
- <div class="span8 columns">
- <form action="{{ url_for('authenticate') }}" method="post">
- <h3>Log to an existing project...</h3>
- {{ forms.authenticate(auth_form) }}
- </form>
+ <h2>Welcome on your budget manager</h2>
+ <p>You're sharing a house? are going on holidays with friends? are simply sharing money with others? We can help!</p>
+ <div class="row">
+ <div class="span8 columns">
+ <form action="{{ url_for('authenticate') }}" method="post">
+ <h3>Log to an existing project...</h3>
+ {{ forms.authenticate(auth_form) }}
+ </form>
+ </div>
+ <div class="span8 columns">
+ <form action="{{ url_for('create_project') }}" method="post">
+ <h3>...or create a new one</h3>
+ {{ forms.create_project(project_form) }}</div>
+ </form>
+ </div>
</div>
- <div class="span8 columns">
- <form action="{{ url_for('create_project') }}" method="post">
- <h3>...or create a new one</h3>
- {{ forms.create_project(project_form) }}</div>
- </form>
</div>
</div>
-
{% endblock %}