flatpage_default_noads.html 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. <h2 class="sectionhead_wide">{{flatpage.title}}</h2>
  16. </div>
  17. <div style="padding-left:12px; padding-right:12px">
  18. {% load markup typogrify %}
  19. {{flatpage.content|markdown}}
  20. </div>
  21. <div style="padding-left:12px; padding-bottom:8px; padding-top:12px; clear:both">
  22. <!-- AddThis Button BEGIN -->
  23. <div style="width:250px">
  24. <a class="addthis_button_facebook_like" fb:like:layout="standard"></a>
  25. </div>
  26. <script type="text/javascript">var addthis_config = {"data_track_addressbar":true};</script>
  27. <script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=penbaypress"></script>
  28. <!-- AddThis Button END -->
  29. </div>
  30. </div>
  31. <!-- AddThis Smart Layers BEGIN -->
  32. <!-- Go to http://www.addthis.com/get/smart-layers to customize -->
  33. <script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=penbaypress"></script>
  34. <script type="text/javascript">
  35. addthis.layers({
  36. 'theme' : 'transparent',
  37. 'share' : {
  38. 'position' : 'right',
  39. 'services' : 'facebook,twitter,email,print,gmail,tumblr,more',
  40. }
  41. });
  42. </script>
  43. <!-- AddThis Smart Layers END -->
  44. {% endblock %}