blob: 25525af7f4b55647f7cdadbe5360a42de3306958 [file] [log] [blame]
Rushabh Mehtabd7f7232012-06-15 14:00:06 +05301{#
2 requires, brand, top_bar_items, footer_items, copyright, content
3#}
4
Anand Doshi51146c02012-07-12 18:41:12 +05305{% extends "html/base.html" %}
Rushabh Mehtabd7f7232012-06-15 14:00:06 +05306
7{% block body %}
8
9 <header>
10 <div class="navbar navbar-fixed-top">
11 <div class="navbar-inner">
12 <div class="container">
13 <a class="brand" href="index.html">{{ brand }}</a>
14 <ul class="nav">
15 {% for page in top_bar_items %}
16 {% if not page.parent_label %}
Rushabh Mehtaa9302b02012-09-05 12:32:19 +053017 <li data-label="{{ page.label }}"
18 {% if page.child_items %}
19 class="dropdown"
20 {% endif %}>
21 <a href="{{ page.url or '#' }}"
22 {% if page.child_items %}
23 class="dropdown-toggle"
24 onclick="return false;"
25 {% endif %}
26 {{ page.target or ''}}>
Rushabh Mehtabd7f7232012-06-15 14:00:06 +053027 {{ page.label }}
28 {% if page.child_items %}
Rushabh Mehtaa9302b02012-09-05 12:32:19 +053029 <b class="caret"></b>
30 </a>
Rushabh Mehtabd7f7232012-06-15 14:00:06 +053031 <ul class="dropdown-menu">
32 {% for child in page.child_items %}
33 <li data-label="{{ child.label }}">
Rushabh Mehtaa9302b02012-09-05 12:32:19 +053034 <a href="{{ child.url }}" {{ child.target or '' }}>
35 {{ child.label }}
36 </a>
37 </li>
Rushabh Mehtabd7f7232012-06-15 14:00:06 +053038 {% endfor %}
39 </ul>
Rushabh Mehtaa9302b02012-09-05 12:32:19 +053040 {% else %}
41 </a>
Rushabh Mehtabd7f7232012-06-15 14:00:06 +053042 {% endif %}
Rushabh Mehtaa9302b02012-09-05 12:32:19 +053043 </li>
Rushabh Mehtabd7f7232012-06-15 14:00:06 +053044 {% endif %}
45 {% endfor %}
46 </ul>
47 <img src="images/lib/ui/spinner.gif" id="spinner"/>
48 <ul class="nav pull-right">
Anand Doshi51146c02012-07-12 18:41:12 +053049 <li id="login-topbar-item"><a href="login.html">Login</a></li>
Rushabh Mehtabd7f7232012-06-15 14:00:06 +053050 </ul>
51 </div>
52 </div>
Rushabh Mehtaa9302b02012-09-05 12:32:19 +053053 </div>
54 <script>$('.dropdown-toggle').dropdown()</script>
Rushabh Mehtabd7f7232012-06-15 14:00:06 +053055 </header>
56 <div id="body_div">
57 <div class="content" id="page-{{ name }}" style="display: block;">
58 {% block content %}
59 {% endblock %}
60 </div>
61 </div>
62 <footer><div class="web-footer">
63 <div class="web-footer-menu"><ul>
64 {% for item in footer_items %}
65 <li><a href="{{ item.url }}" {{ item.target }}
66 data-label="{{ item.label }}">{{ item.label }}</a></li>
67 {% endfor %}
68 </ul></div>
Anand Doshi51146c02012-07-12 18:41:12 +053069 {% if copyright %}
Rushabh Mehtabd7f7232012-06-15 14:00:06 +053070 <div class="web-footer-copyright">&copy; {{ copyright }}
Anand Doshi51146c02012-07-12 18:41:12 +053071 {% endif %}
Rushabh Mehtabd7f7232012-06-15 14:00:06 +053072 </div>
73 </footer>
74
75{% endblock %}