store_base.html 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {% extends "base.html" %}
  2. {% load url from future %}
  3. {% load catalog_tags %}
  4. {% block flag_link %}{% url "storefront_index" %}{% endblock %}
  5. {% block flag_img_src %}{{MEDIA_URL}}images/headers/storelogo440.gif{% endblock %}
  6. {% block flag_descrip %}Subscriptions, books, movies and maps<br>from Penobscot Bay Press.{% endblock %}
  7. {% block title %}Penobscot Bay Press Community Storefront{% endblock title %}
  8. {% block og_title %}Penobscot Bay Press Community Storefront{% endblock og_title%}
  9. {% block og_type %}Article{% endblock %}
  10. {% block og_url %}/store/{% endblock %}
  11. {% block og_description %}Subscriptions, books, movies and maps from Penobscot Bay Press.{% endblock %}
  12. {% block meta_title %}Penobscot Bay Press Community Storefront{% endblock meta_title %}
  13. {% block meta_description %}Subscriptions, books, movies and maps from Penobscot Bay Press.{% endblock meta_description %}
  14. {% block style %}
  15. <link href="{{MEDIA_URL}}css/store_styles.css" rel="stylesheet" type="text/css" />
  16. {% endblock style %}
  17. {% block content %}
  18. <td colspan="3" valign="top" bgcolor="white" cellpadding="0" cellspacing="0" >
  19. <div id="store_container">
  20. {% block shopping_cart %}
  21. {% endblock shopping_cart %}
  22. {% block nav_menu %}
  23. <div id="store_nav_container">
  24. <ul class="store_nav_list">
  25. <li class="store_nav_item"><a href='{% url "storefront_index" %}' class="store_nav_link">Store Home</a></li> |
  26. <li class="store_nav_item"><a href="https://penobscotbaypress.com/subs/" class="store_nav_link">Subscriptions</a></li> |
  27. <li class="store_nav_item"><a href="https://penobscotbaypress.com/subs/address/" class="store_nav_link">Change of Address</a></li>
  28. </ul>
  29. </div>
  30. {% endblock nav_menu %}
  31. <div id="{% block store_details_div_id %}store_details{% endblock store_details_div_id %}">
  32. {% block body %}{% endblock body %}
  33. </div>
  34. <div style="clear:both"></div>
  35. </div>
  36. </td>
  37. {% endblock content%}