12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- {% extends "base.html" %}
- {% block og_title %}Advertising with Penobscot Bay Press | {{flatpage.title}}{% endblock og_title%}
- {% block og_type %}Product{% endblock %}
- {% block og_url %}{{flatpage.get_absolute_url}}{% endblock %}
- {% block og_description %}Purchase a new subscription or renewal to one of our weekly newspapers.{% endblock %}
- {% block og_image %}{{MEDIA_URL}}images/headers/pbp_sharing_logo.jpg{% endblock %}
- {% block meta_title %}Advertising with Penobscot Bay Press | {{flatpage.title}}{% endblock %}
- {% block meta_description %}Purchase a new subscription or renewal to one of our weekly newspapers.{% endblock %}
- {% block rel-img %}{{MEDIA_URL}}images/headers/pbp_sharing_logo.jpg{% endblock %}
- {% block title %}Advertising with Penobscot Bay Press | {{flatpage.title}}{% endblock title %}
- {% block style %}
- <link href="{{MEDIA_URL}}css/store_styles.css" rel="stylesheet" type="text/css" />
- {% endblock style %}
- {% block content %}
- <div style="width:100%; margin:0; padding:0">
- {% block nav_menu %}
- <div id="store_nav_container">
- <ul class="store_nav_list">
- <li class="store_nav_item"><a href='https://penobscotbaypress.com/about/advertise/' class="store_nav_link">Advertise with us</a></li> |
- <li class="store_nav_item"><a href='https://penobscotbaypress.com/ads/sports/' class="store_nav_link">SPORTS ads</a></li>
- </ul>
- </div>
- {% endblock nav_menu %}
- <div>
- {% 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 -->
- <hr size="1">
-
- <!-- 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 -->
- </div>
- </div>
- {% endblock %}
|