blob: bac35150421e75c08974570942503321ac4bd839 [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 Doshic4e9dee2013-07-15 14:48:14 +05306 {% if shopping_cart_enabled -%}
Anand Doshiab690292013-06-13 11:21:35 +05307 <a href="cart" title="Shopping Cart"><i class="icon-shopping-cart"></i>
8 <span class="cart-count"></span></a> |
Anand Doshic4e9dee2013-07-15 14:48:14 +05309 {%- endif %}
Rushabh Mehtaa54cb242013-03-19 11:12:22 +053010 <a id="login-link" href="login">Login</a>
11 </div>
Anand Doshiab690292013-06-13 11:21:35 +053012 <div class="pull-right hide" style="margin:4px;" id="user-tools-post-login">
13 <a href="profile" title="My Profile" id="user-full-name"></a> |
14 <a href="account" title="My Account">My Account</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 Mehta4a2f0f82013-05-22 11:57:05 +053023 <div class="col col-lg-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 Mehta3023a8f2013-04-03 16:34:23 +053026 {% include "app/website/templates/html/navbar.html" %}
Rushabh Mehta78db3ec2013-02-21 14:25:30 +053027 <div class="content row" id="page-{{ name }}" style="display: block;">
Rushabh Mehtabed19ac2013-03-21 17:12:25 +053028 {%- block content -%}
29 {%- endblock -%}
Rushabh Mehtaf2b17d92013-02-21 10:49:37 +053030 </div>
31 </div>
Rushabh Mehtaf2b17d92013-02-21 10:49:37 +053032 </div>
Rushabh Mehta3023a8f2013-04-03 16:34:23 +053033 {% include "app/website/templates/html/footer.html" %}
Rushabh Mehtaf2b17d92013-02-21 10:49:37 +053034
35{% endblock %}