coa_default.html 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. {% extends "base.html" %}
  2. {% block og_title %}Newspaper Subscription | Penobscot Bay Press{% endblock og_title%}
  3. {% block og_type %}Product{% endblock %}
  4. {% block og_url %}{{flatpage.get_absolute_url}}{% endblock %}
  5. {% block og_description %}Purchase a new subscription or renewal to one of our weekly newspapers.{% endblock %}
  6. {% block og_image %}{{MEDIA_URL}}images/headers/pbp_sharing_logo.jpg{% endblock %}
  7. {% block meta_title %}Newspaper Subscription | Penobscot Bay Press{% endblock %}
  8. {% block meta_description %}Purchase a new subscription or renewal to one of our weekly newspapers.{% endblock %}
  9. {% block rel-img %}{{MEDIA_URL}}images/headers/pbp_sharing_logo.jpg{% endblock %}
  10. {% block title %}Newspaper Subscription | Penobscot Bay Press{% endblock title %}
  11. {% block style %}
  12. <link href="{{MEDIA_URL}}css/store_styles.css" rel="stylesheet" type="text/css" />
  13. {% endblock style %}
  14. {% block content %}
  15. <td valign="top" bgcolor="white" colspan="3" width="768px">
  16. {% block nav_menu %}
  17. <div id="store_nav_container">
  18. <ul class="store_nav_list">
  19. <li class="store_nav_item"><a href='https://penobscotbaypress.com/store' class="store_nav_link">Store Home</a></li> |
  20. <li class="store_nav_item"><a href='https://penobscotbaypress.com/subs/' class="store_nav_link">Subscriptions</span></a></li> |
  21. <li class="store_nav_item"><span class="store_nav_current">Change of Address</li>
  22. </ul>
  23. </div>
  24. {% endblock nav_menu %}
  25. <div style="float:right; width:150px">
  26. <!--Mobile teaser will go here.--></div>
  27. <div style="padding-left:12px; padding-right:12px: float:left; width:550px">
  28. <h2 class="store_sectionhead" style="clear:left">{{flatpage.title}}</h2>
  29. <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>
  30. <p class="store_home_descrip">
  31. 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>
  32. </div>
  33. <div style="padding-left:12px; padding-right:12px; clear:both">
  34. {% load markup typogrify %}
  35. {{flatpage.content|markdown}}
  36. </div>
  37. <div style="padding-left:12px; padding-bottom:8px; padding-top:12px; clear:both">
  38. <!-- AddThis Button BEGIN -->
  39. <div style="width:250px">
  40. <a class="addthis_button_facebook_like" fb:like:layout="standard"></a>
  41. </div>
  42. <script type="text/javascript">var addthis_config = {"data_track_addressbar":true};</script>
  43. <script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=penbaypress"></script>
  44. <!-- AddThis Button END -->
  45. <hr size="1">
  46. <!-- AddThis Smart Layers BEGIN -->
  47. <!-- Go to http://www.addthis.com/get/smart-layers to customize -->
  48. <script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=penbaypress"></script>
  49. <script type="text/javascript">
  50. addthis.layers({
  51. 'theme' : 'transparent',
  52. 'share' : {
  53. 'position' : 'right',
  54. 'services' : 'facebook,twitter,email,print,gmail,tumblr,more',
  55. }
  56. });
  57. </script>
  58. <!-- AddThis Smart Layers END -->
  59. </div>
  60. </td>
  61. {% endblock %}