1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- {% extends "base.html" %}
- {% block og_title %}Newspaper Subscription | Penobscot Bay Press{% endblock og_title%}
- {% block og_type %}Product{% endblock %}
- {% block og_url %}{{flatpage.get_absolute_url}}{% endblock %}
- {% block og_description %}Purchase a new subscription or renewal to one of our weekly newspapers.{% endblock %}
- {% block og_image %}{{MEDIA_URL}}images/headers/pbp_sharing_logo.jpg{% endblock %}
- {% block meta_title %}Newspaper Subscription | Penobscot Bay Press{% endblock %}
- {% block meta_description %}Purchase a new subscription or renewal to one of our weekly newspapers.{% endblock %}
- {% block rel-img %}{{MEDIA_URL}}images/headers/pbp_sharing_logo.jpg{% endblock %}
- {% block title %}Newspaper Subscription | Penobscot Bay Press{% endblock title %}
- {% block style %}
- <link href="{{MEDIA_URL}}css/store_styles.css" rel="stylesheet" type="text/css" />
- {% endblock style %}
- {% block content %}
- <td valign="top" bgcolor="white" colspan="3" width="768px">
- {% block nav_menu %}
- <div id="store_nav_container">
- <ul class="store_nav_list">
- <li class="store_nav_item"><a href='https://penobscotbaypress.com/store' class="store_nav_link">Store Home</a></li> |
- <li class="store_nav_item"><a href='https://penobscotbaypress.com/subs/' class="store_nav_link">Subscriptions</span></a></li> |
- <li class="store_nav_item"><span class="store_nav_current">Change of Address</li>
- </ul>
- </div>
- {% endblock nav_menu %}
- <div style="float:right; width:150px">
- <!--Mobile teaser will go here.--></div>
- <div style="padding-left:12px; padding-right:12px: float:left; width:550px">
- <h2 class="store_sectionhead" style="clear:left">{{flatpage.title}}</h2>
- <p class="store_home_descrip"> <img src="{{MEDIA_URL}}images/headers/cp_flag_140.jpg" alt="Castine Patriot logo" style="margin-right:18px" /><img src="{{MEDIA_URL}}images/headers/ia_flag_140.jpg" alt="Island Ad-Vantages logo" style="margin-right:18px" /><img src="{{MEDIA_URL}}images/headers/wp_flag_140.jpg" alt="The Weekly Packet logo" /><br>
- <p class="store_home_descrip">
- To change the your subscription address for one of our weekly community newspapers, please fill out the form below. A confirmation email will be sent to the address you provide. If you do not see a form below, please check that Javascript is turned on in your browser.</p>
- </div>
- <div style="padding-left:12px; padding-right:12px; clear:both">
- {% load markup typogrify %}
- {{flatpage.content|markdown}}
- </div>
-
- <div style="padding-left:12px; padding-bottom:8px; padding-top:12px; clear:both">
- <!-- AddThis Button BEGIN -->
- <div style="width:250px">
- <a class="addthis_button_facebook_like" fb:like:layout="standard"></a>
- </div>
- <script type="text/javascript">var addthis_config = {"data_track_addressbar":true};</script>
- <script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=penbaypress"></script>
- <!-- AddThis Button END -->
- <hr size="1">
-
- <!-- AddThis Smart Layers BEGIN -->
- <!-- Go to http://www.addthis.com/get/smart-layers to customize -->
- <script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=penbaypress"></script>
- <script type="text/javascript">
- addthis.layers({
- 'theme' : 'transparent',
- 'share' : {
- 'position' : 'right',
- 'services' : 'facebook,twitter,email,print,gmail,tumblr,more',
- }
- });
- </script>
- <!-- AddThis Smart Layers END -->
- </div>
- </td>
- {% endblock %}
|