1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- {% extends "base.html" %}
- {% block title %}Community Info | Penobscot Bay Press {% endblock %}
- {% block description %}{{a.archivesectionchive.body|truncatewords:60}} {% endblock %}
- {% block flag_img_src %}{{MEDIA_URL}}images/headers/cominforound440.gif{% endblock %}
- {% block flag_descrip %}Your on-line source for community information covering the unique towns and<br/> islands of East Penobscot and Blue Hill Bays, Maine.{% endblock %}
- {% block content %}
- <div style="width:100%; margin:0; padding:0">
- <div class="main_content_left">
- <h2 class="sectionhead_wide">Tides and Weather</h2>
- <div style="width: 700px;"><iframe style="display: block;" src="http://cdnres.willyweather.com/widget/loadView.html?id=17129" width="700" height="520" frameborder="0" scrolling="no"></iframe><a style="margin: -20px 0 0 0;text-indent: -9999em;height: 20px;z-index: 1;display: block;position: relative" href="http://tides.willyweather.com/me/hancock-county/stonington.html">forecast for stonington</a></div>
- </div>
- <div class="sidebar_right_media">
- <!-- Block Ad BEGIN -->
- {% load adzone_tags %}
- {% random_zone_ad '' 'cn-block' %}
- <!-- Block Ad END -->
- </div>
- <div style="padding-left:12px; padding-right:12px; padding-bottom:0px">
- <!-- AddThis Button BEGIN -->
- <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 -->
- <p>
- {% for s in object.sites.all|dictsortreversed:"id"%}
- {% if forloop.first %}
- <a class="return" href="http://{{s}}">{{s.name}} home page</a>
- {% else %}
- <span style="margin-left:15px; margin-right:15px">•</span><a class="return" href="http://{{s}}">{{s.name}} home page</a>
- {% endif %}
- {% endfor %}
- </p>
- </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 %}
|