123456789101112131415161718192021222324252627 |
- {% extends "pbp_store/store_base.html" %}
- {% load url from future %}
- {% load storefront_tags pbp_core_tags %}
- {% block redirect %}<script type="text/javascript">
- <!--
- window.location="http://penobscotbaypress.com/store/";
- //-->
- </script>
- {% endblock redirect %}
- {% block style %}{{ block.super }}
- <link rel="stylesheet"
- href="//ajax.googleapis.com/ajax/libs/jqueryui/1.10.0/themes/base/jquery-ui.css"
- xmlns="http://www.w3.org/1999/html">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script>
- <script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.10.0/jquery-ui.min.js"></script>
- <script type="text/javascript" src="{{ MEDIA_URL }}js/jquery.cookie.js"></script>
- {% endblock style %}
- {% block title %}New Newspaper Subscription | Penobscot Bay Press Community Storefront{% endblock title %}
- {% block body %}
- <div id="store_details">
- <div class="store_item">
- <p class="sub_price">You have reached an old store page in error. This page should automatically redirect, if it doesn't, <a href="penobscotbaypress.com/store">click here </a>to proceed to our new store.</p>
- </div>
- {% endblock body %}
|