subs_default_111515.html 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. <div style="width:100%; margin:0; padding:0">
  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</a></li> |
  21. <li class="store_nav_item"><a href="https://penobscotbaypress.com/subs/address/" class="store_nav_link">Change of Address</a></li>
  22. </ul>
  23. </div>
  24. {% endblock nav_menu %}
  25. <div>
  26. {% load markup typogrify %}
  27. {{flatpage.content|markdown}}
  28. </div>
  29. <div style="padding-left:12px; padding-bottom:8px; padding-top:12px; clear:both">
  30. <!-- AddThis Button BEGIN -->
  31. <div style="width:250px">
  32. <a class="addthis_button_facebook_like" fb:like:layout="standard"></a>
  33. </div>
  34. <script type="text/javascript">var addthis_config = {"data_track_addressbar":true};</script>
  35. <script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=penbaypress"></script>
  36. <!-- AddThis Button END -->
  37. <hr size="1">
  38. <!-- AddThis Smart Layers BEGIN -->
  39. <!-- Go to http://www.addthis.com/get/smart-layers to customize -->
  40. <script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=penbaypress"></script>
  41. <script type="text/javascript">
  42. addthis.layers({
  43. 'theme' : 'transparent',
  44. 'share' : {
  45. 'position' : 'right',
  46. 'services' : 'facebook,twitter,email,print,gmail,tumblr,more',
  47. }
  48. });
  49. </script>
  50. <!-- AddThis Smart Layers END -->
  51. </div>
  52. </div>
  53. {% endblock %}