fakebrainstest.html 3.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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. {% include "classifieds/includes/AccountScoutIndexOneFile.htm" %}
  22. {{flatpage.content|markdown}}
  23. </div>
  24. <div style="padding-left:12px; padding-bottom:8px; padding-top:12px; clear:both">
  25. <!-- AddThis Button BEGIN -->
  26. <div style="width:250px">
  27. <a class="addthis_button_facebook_like" fb:like:layout="standard"></a>
  28. </div>
  29. <script type="text/javascript">var addthis_config = {"data_track_addressbar":true};</script>
  30. <script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=penbaypress"></script>
  31. <!-- AddThis Button END -->
  32. <hr size="1">
  33. <!-- Google AdSense BEGIN -->
  34. <script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
  35. <!-- Large banner for bottom of pages -->
  36. <ins class="adsbygoogle"
  37. style="display:inline-block;width:728px;height:90px"
  38. data-ad-client="ca-pub-7616595738812584"
  39. data-ad-slot="1750256958"></ins>
  40. <script>
  41. (adsbygoogle = window.adsbygoogle || []).push({});
  42. </script>
  43. <!-- Google AdSense END -->
  44. </div>
  45. </div>
  46. </div>
  47. <div class="sidebar_right_media">
  48. <!-- Google AdSense BEGIN -->
  49. <div style="clear:both; text-align:center">
  50. <script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
  51. <!-- Square ad for right of pages -->
  52. <ins class="adsbygoogle"
  53. style="display:inline-block;width:250px;height:250px"
  54. data-ad-client="ca-pub-7616595738812584"
  55. data-ad-slot="7790117357"></ins>
  56. <script>
  57. (adsbygoogle = window.adsbygoogle || []).push({});
  58. </script>
  59. </div>
  60. <!-- Google AdSense END -->
  61. <br>
  62. <!-- Google AdSense BEGIN -->
  63. <div style="clear:both; text-align:center">
  64. <script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
  65. <!-- Square ad for right of pages -->
  66. <ins class="adsbygoogle"
  67. style="display:inline-block;width:250px;height:250px"
  68. data-ad-client="ca-pub-7616595738812584"
  69. data-ad-slot="7790117357"></ins>
  70. <script>
  71. (adsbygoogle = window.adsbygoogle || []).push({});
  72. </script>
  73. </div>
  74. <!-- Google AdSense END -->
  75. </div>
  76. <!-- AddThis Smart Layers BEGIN -->
  77. <!-- Go to http://www.addthis.com/get/smart-layers to customize -->
  78. <script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=penbaypress"></script>
  79. <script type="text/javascript">
  80. addthis.layers({
  81. 'theme' : 'transparent',
  82. 'share' : {
  83. 'position' : 'right',
  84. 'services' : 'facebook,twitter,email,print,gmail,tumblr,more',
  85. }
  86. });
  87. </script>
  88. <!-- AddThis Smart Layers END -->
  89. {% endblock %}