1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- {% 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">
- <div class="main_content_left">
- <div style="padding-left:12px; padding-right:12px; padding-top:12px">
- <h2 class="sectionhead_wide">{{flatpage.title}}</h2>
- </div>
- <div style="padding-left:12px; padding-right:12px">
- {% load markup typogrify %}
- {% include "classifieds/includes/AccountScoutIndexOneFile.htm" %}
- {{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 -->
- <hr size="1">
-
- <!-- Google AdSense BEGIN -->
- <script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
- <!-- Large banner for bottom of pages -->
- <ins class="adsbygoogle"
- style="display:inline-block;width:728px;height:90px"
- data-ad-client="ca-pub-7616595738812584"
- data-ad-slot="1750256958"></ins>
- <script>
- (adsbygoogle = window.adsbygoogle || []).push({});
- </script>
- <!-- Google AdSense END -->
- </div>
- </div>
- </div>
- <div class="sidebar_right_media">
- <!-- Google AdSense BEGIN -->
- <div style="clear:both; text-align:center">
- <script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
- <!-- Square ad for right of pages -->
- <ins class="adsbygoogle"
- style="display:inline-block;width:250px;height:250px"
- data-ad-client="ca-pub-7616595738812584"
- data-ad-slot="7790117357"></ins>
- <script>
- (adsbygoogle = window.adsbygoogle || []).push({});
- </script>
- </div>
- <!-- Google AdSense END -->
- <br>
- <!-- Google AdSense BEGIN -->
- <div style="clear:both; text-align:center">
- <script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
- <!-- Square ad for right of pages -->
- <ins class="adsbygoogle"
- style="display:inline-block;width:250px;height:250px"
- data-ad-client="ca-pub-7616595738812584"
- data-ad-slot="7790117357"></ins>
- <script>
- (adsbygoogle = window.adsbygoogle || []).push({});
- </script>
- </div>
- <!-- Google AdSense END -->
- </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 %}
|