1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- {% 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 colspan="3" valign="top" bgcolor="white" cellpadding="0" cellspacing="0" >
- <div id="store_container">
- {% block shopping_cart %}
- {% 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="https://penobscotbaypress.com/subs/" class="store_nav_link">Subscriptions</a></li> |
- <li class="store_nav_item"><a href="https://penobscotbaypress.com/subs/address/" class="store_nav_link">Change of Address</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%}
|