12345678910111213141516171819202122 |
- {% extends "pbp_store/store_base.html" %}
- {% load url from future %}
- {% load storefront_tags pbp_core_tags %}
- {% block style %}{{ block.super }}
- <link rel="stylesheet" href="http://code.jquery.com/ui/1.10.0/themes/base/jquery-ui.css">
- <script src="http://code.jquery.com/jquery-1.9.0.js"></script>
- <script src="http://code.jquery.com/ui/1.10.0/jquery-ui.js"></script>
- <script type="text/javascript" src="{{ MEDIA_URL }}js/jquery.cookie.js"></script>
- {% endblock style %}
- {% block body %}
- <div id="store_details_sidebar">
- <h2 class="store_sectionhead">Privacy Policy</h2>
- <div class="store_item">
- <p>Your privacy rights are important to us. Penobscot Bay Press will never sell or share your name, e-mail address, phone number, or other contact information. We only use this information internally for our own records. Any account particulars you choose to keep on file with us will be kept in encrypted format in a secure location using industry-standard SSL (secure socket layer) server technology. If you have any questions or concerns, please <a href="{% url 'help' %}">see our Help page</a> for contact information.</p>
- </div>
- </div>
- {% endblock body %}
|