apps.html 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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 style="clear:both; padding:1px; width:728px; margin: 0 auto">
  31. {% load adzone_tags %}
  32. {% random_zone_ad '' 'app-ad' %}
  33. </div>
  34. <!-- AddThis Smart Layers BEGIN -->
  35. <!-- Go to http://www.addthis.com/get/smart-layers to customize -->
  36. <script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=penbaypress"></script>
  37. <script type="text/javascript">
  38. addthis.layers({
  39. 'theme' : 'transparent',
  40. 'share' : {
  41. 'position' : 'right',
  42. 'services' : 'facebook,twitter,email,print,gmail,tumblr,more',
  43. }
  44. });
  45. </script>
  46. <!-- AddThis Smart Layers END -->
  47. {% endblock %}