Add accounts, login, logout
[frozenviper.git] / viper / templates / layout / base.html
blob33407bb5bdb18b803abc52f9ac836acd96d94d45
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2 <html xmlns="http://www.w3.org/1999/xhtml" dir="ltr">
4 <head>
5 <meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
6 <meta name="description" content="{% block description %}{% endblock %}"/>
7 <meta name="keywords" content="{% block keywords %}{% endblock %}" />
8 <link rel="stylesheet" type="text/css" href="/static/style.css" media="screen" />
9 <title>{% block title %}Frozen Viper: Your apartment listing resource!{% endblock %}</title>
10 </head>
12 <body>
14 <div id="site-wrapper">
15 {% block flash %}
16 <div id="flash">
17 {% if flash %}
18 {% for key, value in flash.items %}
19 <div>
20 <p class="{{ key }}">{{ value }}</p>
21 </div>
22 {% endfor %}
23 {% endif %}
24 </div>
25 {% endblock %}
27 <div id="header">
29 <div id="top">
31 {% block main_logo %}
32 {% include "logo.html" %}
33 {% endblock %}
35 {% block main_nav %}{% endblock %}
37 <div class="clearer">&nbsp;</div>
39 </div>
41 {% block sub_nav %}{% endblock %}
43 </div>
45 {% block splash %}{% endblock %}
47 {% block main %}{% endblock %}
49 {% block footer %}
50 {% include "footer.html" %}
51 {% endblock %}
53 </div>
54 </body>
55 </html>