12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- {% extends "base.html" %}
- {% block og_title %}{{flatpage.title}} | Penobscot Bay Press{% endblock %}
- {% block og_type %}Article{% endblock %}
- {% block og_url %}{{flatpage.get_absolute_url}}{% endblock %}
- {% block og_description %}Your on-line source for community information covering the unique towns and
- islands of East Penobscot and Blue Hill Bays, Maine.{% endblock %}
- {% block og_image %}{{MEDIA_URL}}images/headers/pbp_sharing_logo.jpg{% endblock %}
- {% block meta_title %}{{flatpage.title}} | Penobscot Bay Press{% endblock %}
- {% block meta_description %}Your on-line source for community information covering the unique towns and
- islands of East Penobscot and Blue Hill Bays, Maine.{% endblock %}
- {% block rel-img %}{{MEDIA_URL}}images/headers/pbp_sharing_logo.jpg{% endblock %}
- {% block title %}{{flatpage.title}} | Penobscot Bay Press{% endblock %}
- {% block content %}
- <div style="width:100%; margin:0; padding:0">
- <h2 class="sectionhead_wide">{{flatpage.title}}</h2>
- </div>
- <div style="padding-left:12px; padding-right:12px">
- {% load markup typogrify %}
- {{flatpage.content|markdown}}
- </div>
-
- <div style="padding-left:12px; padding-bottom:8px; padding-top:12px; clear:both">
- <!-- AddThis Button BEGIN -->
- <div style="width:250px">
- <a class="addthis_button_facebook_like" fb:like:layout="standard"></a>
- </div>
- <script type="text/javascript">var addthis_config = {"data_track_addressbar":true};</script>
- <script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=penbaypress"></script>
- <!-- AddThis Button END -->
-
- </div>
- </div>
- <!-- AddThis Smart Layers BEGIN -->
- <!-- Go to http://www.addthis.com/get/smart-layers to customize -->
- <script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=penbaypress"></script>
- <script type="text/javascript">
- addthis.layers({
- 'theme' : 'transparent',
- 'share' : {
- 'position' : 'right',
- 'services' : 'facebook,twitter,email,print,gmail,tumblr,more',
- }
- });
- </script>
- <!-- AddThis Smart Layers END -->
- {% endblock %}
|