flatpage_default.html 3.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. {% extends "base.html" %}
  2. {% block og_title %}{{flatpage.title}} | Penobscot Bay Press{% endblock %}
  3. {% block og_type %}Article{% endblock %}
  4. {% block og_url %}{{flatpage.get_absolute_url}}{% endblock %}
  5. {% block og_description %}Your on-line source for community information covering the unique towns and
  6. islands of East Penobscot and Blue Hill Bays, Maine.{% endblock %}
  7. {% block og_image %}{{MEDIA_URL}}images/headers/pbp_sharing_logo.jpg{% endblock %}
  8. {% block meta_title %}{{flatpage.title}} | Penobscot Bay Press{% endblock %}
  9. {% block meta_description %}Your on-line source for community information covering the unique towns and
  10. islands of East Penobscot and Blue Hill Bays, Maine.{% endblock %}
  11. {% block rel-img %}{{MEDIA_URL}}images/headers/pbp_sharing_logo.jpg{% endblock %}
  12. {% block title %}{{flatpage.title}} | Penobscot Bay Press{% endblock %}
  13. {% block content %}
  14. <div style="width:100%; margin:0; padding:0">
  15. <div class="main_content_left">
  16. <div style="padding-left:12px; padding-right:12px; padding-top:12px">
  17. <h2 class="sectionhead_wide">{{flatpage.title}}</h2>
  18. </div>
  19. <div style="padding-left:12px; padding-right:12px">
  20. {% load markup typogrify %}
  21. {{flatpage.content|markdown}}
  22. </div>
  23. <div style="padding-left:12px; padding-bottom:8px; padding-top:12px; clear:both">
  24. <!-- AddThis Button BEGIN -->
  25. <div style="width:250px">
  26. <a class="addthis_button_facebook_like" fb:like:layout="standard"></a>
  27. </div>
  28. <script type="text/javascript">var addthis_config = {"data_track_addressbar":true};</script>
  29. <script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=penbaypress"></script>
  30. <!-- AddThis Button END -->
  31. <hr size="1">
  32. <!-- Google AdSense BEGIN -->
  33. <script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
  34. <!-- Large banner for bottom of pages -->
  35. <ins class="adsbygoogle"
  36. style="display:inline-block;width:728px;height:90px"
  37. data-ad-client="ca-pub-7616595738812584"
  38. data-ad-slot="1750256958"></ins>
  39. <script>
  40. (adsbygoogle = window.adsbygoogle || []).push({});
  41. </script>
  42. <!-- Google AdSense END -->
  43. </div>
  44. </div>
  45. </div>
  46. <div class="sidebar_right_media">
  47. <!-- Google AdSense BEGIN -->
  48. <div style="clear:both; text-align:center">
  49. <script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
  50. <!-- Square ad for right of pages -->
  51. <ins class="adsbygoogle"
  52. style="display:inline-block;width:250px;height:250px"
  53. data-ad-client="ca-pub-7616595738812584"
  54. data-ad-slot="7790117357"></ins>
  55. <script>
  56. (adsbygoogle = window.adsbygoogle || []).push({});
  57. </script>
  58. </div>
  59. <!-- Google AdSense END -->
  60. <br>
  61. <!-- Google AdSense BEGIN -->
  62. <div style="clear:both; text-align:center">
  63. <script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
  64. <!-- Square ad for right of pages -->
  65. <ins class="adsbygoogle"
  66. style="display:inline-block;width:250px;height:250px"
  67. data-ad-client="ca-pub-7616595738812584"
  68. data-ad-slot="7790117357"></ins>
  69. <script>
  70. (adsbygoogle = window.adsbygoogle || []).push({});
  71. </script>
  72. </div>
  73. <!-- Google AdSense END -->
  74. </div>
  75. <!-- AddThis Smart Layers BEGIN -->
  76. <!-- Go to http://www.addthis.com/get/smart-layers to customize -->
  77. <script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=penbaypress"></script>
  78. <script type="text/javascript">
  79. addthis.layers({
  80. 'theme' : 'transparent',
  81. 'share' : {
  82. 'position' : 'right',
  83. 'services' : 'facebook,twitter,email,print,gmail,tumblr,more',
  84. }
  85. });
  86. </script>
  87. <!-- AddThis Smart Layers END -->
  88. {% endblock %}