ads_default.html 2.4 KB

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