1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/ihatemoney_ynh.git synced 2024-09-03 19:26:15 +02:00
ihatemoney_ynh/budget/templates/layout.html

38 lines
1 KiB
HTML
Raw Normal View History

2011-07-31 23:55:02 +02:00
{% import "forms.html" as forms %}
2011-03-10 03:37:21 +01:00
<!DOCTYPE html>
<html>
<head>
<title>Account manager</title>
<link rel=stylesheet type=text/css href="{{ url_for('static', filename='main.css') }}">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
<script type="text/javascript" charset="utf-8">
$(document).ready(function(){
setTimeout(function(){
$(".flash").fadeOut("slow", function () {
$(".flash").remove();
});
}, 2000);
{% block js %}{% endblock %}
});
</script>
2011-03-10 03:37:21 +01:00
</head>
<body>
<div class="container" class="span-24">
2011-08-09 23:49:09 +02:00
<div id="title" class="span-20">
<a href="/"><h1>Account manager ! <span class="small">Manage your shared expenses.</span></h1></a></div>
<div class="span-4 last" id="topmenu">
{% block top_menu %}{% endblock %}
2011-03-10 03:37:21 +01:00
</div>
2011-08-09 23:49:09 +02:00
<hr>
2011-07-23 20:36:13 +02:00
{% for message in get_flashed_messages() %}
<div class="flash">{{ message }}</div>
2011-07-23 20:36:13 +02:00
{% endfor %}
{% block content %}
{% endblock %}
2011-03-10 03:37:21 +01:00
<div id="footer"></div>
</div>
</body>
</html>