subs_default.html 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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. <div style="float:right; width:350px">
  27. <!-- APP Teaser BEGIN -->
  28. <h2 class="store_sectionhead">Digitial Subscriptions</h2>
  29. <p class="store_home_descrip">
  30. Get a digital subscription with our mobile apps.</p>
  31. <div style="padding:2px; text-align:center; margin:0px 0px 10px 0px">
  32. <a href="https://penobscotbaypress.com/apps/" class="app_teaser_link">
  33. <div class="app_teaser_button" style="background-size:244px">
  34. Get our apps
  35. </div>
  36. </a>
  37. </div>
  38. </div>
  39. <div style="float:right; clear:right; padding:1px; width:350px; margin: 0 auto">
  40. {% load adzone_tags %}
  41. {% random_zone_ad '' 'sup-page-block-ad' %}
  42. </div>
  43. {% load markup typogrify %}
  44. {{flatpage.content|markdown}}
  45. </div>
  46. <div style="padding-left:12px; padding-bottom:8px; padding-top:12px; clear:both">
  47. <!-- AddThis Button BEGIN -->
  48. <div style="width:250px">
  49. <a class="addthis_button_facebook_like" fb:like:layout="standard"></a>
  50. </div>
  51. <script type="text/javascript">var addthis_config = {"data_track_addressbar":true};</script>
  52. <script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=penbaypress"></script>
  53. <!-- AddThis Button END -->
  54. <hr size="1">
  55. <!-- AddThis Smart Layers BEGIN -->
  56. <!-- Go to http://www.addthis.com/get/smart-layers to customize -->
  57. <script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=penbaypress"></script>
  58. <script type="text/javascript">
  59. addthis.layers({
  60. 'theme' : 'transparent',
  61. 'share' : {
  62. 'position' : 'right',
  63. 'services' : 'facebook,twitter,email,print,gmail,tumblr,more',
  64. }
  65. });
  66. </script>
  67. <!-- AddThis Smart Layers END -->
  68. </div>
  69. </div>
  70. {% endblock %}