blob: 462f4dd7969d55e791d81846f60301d544383129 [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">
14 <a href="profile" title="My Profile" id="user-full-name"></a> |
15 <a href="account" title="My Account">My Account</a> |
Anand Doshi2ac0a832013-07-10 20:49:44 +053016 {% if shopping_cart_enabled -%}
Anand Doshiab690292013-06-13 11:21:35 +053017 <a href="cart" title="Shopping Cart"><i class="icon-shopping-cart"></i>
18 <span class="cart-count"></span></a> |
Anand Doshi2ac0a832013-07-10 20:49:44 +053019 {%- endif %}
Anand Doshiab690292013-06-13 11:21:35 +053020 <a href="server.py?cmd=web_logout" title="Sign Out"><i class="icon-signout"></i></a>
21 </div>
Rushabh Mehtaa54cb242013-03-19 11:12:22 +053022 <div class="clearfix"></div>
Rushabh Mehta80d83f52013-07-11 15:19:13 +053023 {% if banner_html %}<div class="row banner">
Rushabh Mehtacce21d12013-08-21 17:48:08 +053024 <div class="col-md-12">{{ banner_html }}</div>
Rushabh Mehta1aff4c32013-03-12 11:22:30 +053025 </div>{% endif %}
Rushabh Mehta78db3ec2013-02-21 14:25:30 +053026 <div class="outer">
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 %}