instagram.html 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {% extends "base.html" %}
  2. {% block og_title %}Penobscot Bay Press is on Instagram!{% endblock %}
  3. {% block og_type %}Article{% endblock %}
  4. {% block og_url %}{{flatpage.get_absolute_url}}{% endblock %}
  5. {% block og_description %}Do you love photographs of the community? Do you want to see pictures of local events as they are happening? Or do you just love seeing scenics of our coastal Maine community? Now you can follow your favorite PBP photographers on Instagram.{% endblock %}
  6. {% block og_image %}{{MEDIA_URL}}images/headers/Instagram-Web-Teaser-Image-Horiz.jpg{% endblock %}
  7. {% block meta_title %}{{flatpage.title}} | Penobscot Bay Press{% endblock %}
  8. {% block meta_description %}Your on-line source for community information covering the unique towns and
  9. islands of East Penobscot and Blue Hill Bays, Maine.{% endblock %}
  10. {% block rel-img %}{{MEDIA_URL}}images/headers/Instagram-Web-Teaser-Image-Horiz.jpg{% endblock %}
  11. {% block title %}Penobscot Bay Press is on Instagram!{% endblock %}
  12. {% block content %}
  13. <div style="width:100%; margin:0; padding:0">
  14. <h2 class="sectionhead_wide">{{flatpage.title}}</h2>
  15. </div>
  16. <div style="padding-left:12px; padding-right:12px">
  17. {% load markup typogrify %}
  18. {{flatpage.content|markdown}}
  19. </div>
  20. <div style="padding-left:12px; padding-bottom:8px; padding-top:12px; clear:both">
  21. <!-- AddThis Button BEGIN -->
  22. <div style="width:250px">
  23. <a class="addthis_button_facebook_like" fb:like:layout="standard"></a>
  24. </div>
  25. <script type="text/javascript">var addthis_config = {"data_track_addressbar":true};</script>
  26. <script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=penbaypress"></script>
  27. <!-- AddThis Button END -->
  28. </div>
  29. <div style="clear:both; padding:1px; width:728px; margin: 0 auto">
  30. {% load adzone_tags %}
  31. {% random_zone_ad '' 'app-ad' %}
  32. </div>
  33. <!-- AddThis Smart Layers BEGIN -->
  34. <!-- Go to http://www.addthis.com/get/smart-layers to customize -->
  35. <script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=penbaypress"></script>
  36. <script type="text/javascript">
  37. addthis.layers({
  38. 'theme' : 'transparent',
  39. 'share' : {
  40. 'position' : 'right',
  41. 'services' : 'facebook,twitter,email,print,gmail,tumblr,more',
  42. }
  43. });
  44. </script>
  45. <!-- AddThis Smart Layers END -->
  46. {% endblock %}