blob: cc1181cbd2c6af32e93da8eede904ab301f75988 [file] [log] [blame]
Rushabh Mehta3023a8f2013-04-03 16:34:23 +05301{% extends "lib/templates/base.html" %}
Rushabh Mehtaf2b17d92013-02-21 10:49:37 +05302
3{% block body %}
Rushabh Mehta78db3ec2013-02-21 14:25:30 +05304 <div class="container">
Rushabh Mehtaa54cb242013-03-19 11:12:22 +05305 <div class="pull-right" style="margin:4px;" id="user-tools">
Anand Doshiab690292013-06-13 11:21:35 +05306 <a href="cart" title="Shopping Cart"><i class="icon-shopping-cart"></i>
7 <span class="cart-count"></span></a> |
Rushabh Mehtaa54cb242013-03-19 11:12:22 +05308 <a id="login-link" href="login">Login</a>
9 </div>
Anand Doshiab690292013-06-13 11:21:35 +053010 <div class="pull-right hide" style="margin:4px;" id="user-tools-post-login">
11 <a href="profile" title="My Profile" id="user-full-name"></a> |
12 <a href="account" title="My Account">My Account</a> |
13 <a href="cart" title="Shopping Cart"><i class="icon-shopping-cart"></i>
14 <span class="cart-count"></span></a> |
15 <a href="server.py?cmd=web_logout" title="Sign Out"><i class="icon-signout"></i></a>
16 </div>
Rushabh Mehtaa54cb242013-03-19 11:12:22 +053017 <div class="clearfix"></div>
Rushabh Mehta1aff4c32013-03-12 11:22:30 +053018 {% if banner_html %}<div class="row" style="margin-top: 30px;">
Rushabh Mehta4a2f0f82013-05-22 11:57:05 +053019 <div class="col col-lg-12">{{ banner_html }}</div>
Rushabh Mehta1aff4c32013-03-12 11:22:30 +053020 </div>{% endif %}
Rushabh Mehta78db3ec2013-02-21 14:25:30 +053021 <div class="outer">
Rushabh Mehta3023a8f2013-04-03 16:34:23 +053022 {% include "app/website/templates/html/navbar.html" %}
Rushabh Mehta78db3ec2013-02-21 14:25:30 +053023 <div class="content row" id="page-{{ name }}" style="display: block;">
Rushabh Mehtabed19ac2013-03-21 17:12:25 +053024 {%- block content -%}
25 {%- endblock -%}
Rushabh Mehtaf2b17d92013-02-21 10:49:37 +053026 </div>
27 </div>
Rushabh Mehtaf2b17d92013-02-21 10:49:37 +053028 </div>
Rushabh Mehta3023a8f2013-04-03 16:34:23 +053029 {% include "app/website/templates/html/footer.html" %}
Rushabh Mehtaf2b17d92013-02-21 10:49:37 +053030
31{% endblock %}