12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- {% extends "base.html" %}
- {% load url from future %}
- {% load catalog_tags %}
- {% block flag_link %}{% url "storefront_index" %}{% endblock %}
- {% block flag_img_src %}{{MEDIA_URL}}images/headers/storelogo440.gif{% endblock %}
- {% block flag_descrip %}Subscriptions, books, movies and maps<br>from Penobscot Bay Press.{% endblock %}
- {% block title %}Penobscot Bay Press Community Storefront{% endblock title %}
- {% block og_title %}Penobscot Bay Press Community Storefront{% endblock og_title%}
- {% block og_type %}Article{% endblock %}
- {% block og_url %}/store/{% endblock %}
- {% block og_description %}Subscriptions, books, movies and maps from Penobscot Bay Press.{% endblock %}
- {% block meta_title %}Penobscot Bay Press Community Storefront{% endblock meta_title %}
- {% block meta_description %}Subscriptions, books, movies and maps from Penobscot Bay Press.{% endblock meta_description %}
- {% block style %}
- <link href="{{MEDIA_URL}}css/store_styles.css" rel="stylesheet" type="text/css" />
- {% endblock style %}
- {% block content %}
- <td valign="top" bgcolor="white">
- <div id="store_container">
- {% block shopping_cart %}
- <div style="width:120px; float:right">
- {% cart_box request %}
- {% block right-side %}
- {% featured_item %}
- {% endblock right-side %}
- </div>
- {% endblock shopping_cart %}
- {% block nav_menu %}
- <div id="store_nav_container">
- <ul class="store_nav_list">
- <li class="store_nav_item"><a href='{% url "storefront_index" %}' class="store_nav_link">Store Home</a></li> |
- <li class="store_nav_item"><a href="{% url 'subscriptions_new' %}" class="store_nav_link">Subscriptions</a></li> |
- <li class="store_nav_item"><a href="{% url 'book_category' %}" class="store_nav_link">Books</a> </li> |
- <li class="store_nav_item"><a href="{% url 'map_category' %}" class="store_nav_link">Maps</a></li> |
- <li class="store_nav_item"><a href="{% url 'movie_category' %}" class="store_nav_link">Movies</a></li>
- </ul>
- </div>
- {% endblock nav_menu %}
- <div id="{% block store_details_div_id %}store_details{% endblock store_details_div_id %}">
- {% block body %}{% endblock body %}
- </div>
- <div style="clear:both"></div>
- </div>
- </td>
- {% endblock content%}
|