blob: 3ecb0573e6344d9006156e2f7da2425827bed54d [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 Mehtaf55631a2013-08-29 22:12:17 +05304 {% include "app/website/templates/html/navbar.html" %}
Rushabh Mehta78db3ec2013-02-21 14:25:30 +05305 <div class="container">
Rushabh Mehtaa54cb242013-03-19 11:12:22 +05306 <div class="pull-right" style="margin:4px;" id="user-tools">
Anand Doshic4e9dee2013-07-15 14:48:14 +05307 {% if shopping_cart_enabled -%}
Anand Doshiab690292013-06-13 11:21:35 +05308 <a href="cart" title="Shopping Cart"><i class="icon-shopping-cart"></i>
9 <span class="cart-count"></span></a> |
Anand Doshic4e9dee2013-07-15 14:48:14 +053010 {%- endif %}
Rushabh Mehtaa54cb242013-03-19 11:12:22 +053011 <a id="login-link" href="login">Login</a>
12 </div>
Anand Doshiab690292013-06-13 11:21:35 +053013 <div class="pull-right hide" style="margin:4px;" id="user-tools-post-login">
Anand Doshif7e56482013-08-29 17:46:40 +053014 <a href="account" title="My Account" id="user-full-name"></a> |
Anand Doshi2ac0a832013-07-10 20:49:44 +053015 {% if shopping_cart_enabled -%}
Anand Doshiab690292013-06-13 11:21:35 +053016 <a href="cart" title="Shopping Cart"><i class="icon-shopping-cart"></i>
17 <span class="cart-count"></span></a> |
Anand Doshi2ac0a832013-07-10 20:49:44 +053018 {%- endif %}
Anand Doshiab690292013-06-13 11:21:35 +053019 <a href="server.py?cmd=web_logout" title="Sign Out"><i class="icon-signout"></i></a>
20 </div>
Rushabh Mehtaa54cb242013-03-19 11:12:22 +053021 <div class="clearfix"></div>
Rushabh Mehta80d83f52013-07-11 15:19:13 +053022 {% if banner_html %}<div class="row banner">
Rushabh Mehtacce21d12013-08-21 17:48:08 +053023 <div class="col-md-12">{{ banner_html }}</div>
Rushabh Mehta1aff4c32013-03-12 11:22:30 +053024 </div>{% endif %}
Rushabh Mehta78db3ec2013-02-21 14:25:30 +053025 <div class="outer">
Rushabh Mehta78db3ec2013-02-21 14:25:30 +053026 <div class="content row" id="page-{{ name }}" style="display: block;">
Rushabh Mehtabed19ac2013-03-21 17:12:25 +053027 {%- block content -%}
28 {%- endblock -%}
Rushabh Mehtaf2b17d92013-02-21 10:49:37 +053029 </div>
30 </div>
Rushabh Mehtaf2b17d92013-02-21 10:49:37 +053031 </div>
Rushabh Mehta3023a8f2013-04-03 16:34:23 +053032 {% include "app/website/templates/html/footer.html" %}
Rushabh Mehtaf2b17d92013-02-21 10:49:37 +053033
34{% endblock %}