123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- {% extends "base.html" %}
- {% block title %}Town Information | Penobscot Bay Press | Stonington, Maine{% endblock %}
- {% block description %}{{a.archivesectionchive.body|truncatewords:60}} {% endblock %}
- {% block flag_img_src %}{{MEDIA_URL}}images/headers/towninforound440.gif{% endblock %}
- {% block flag_descrip %}Looking for information about your town?<br/>Can't remember phone numbers for your town offices?<br/>Last updated May 31, 2010{% endblock %}
- {% block content %}
- <div style="width:100%; margin:0; padding:0">
- <div class="main_content_left">
- <h2 class="sectionhead_wide">Town Information</h2>
- {% for t in towns %}
- {% for info in t.towninfo_set.all %}
- <div style="float:left; padding:0px; margin:5px; text-align:center; width:31%; height:40px">
- <h3><a href="{{info.get_absolute_url}}">{{info.town.name}}</a></h3>
- </div>
- {% endfor %}
- {% endfor %}
- </div>
- </div>
- <div class="sidebar_right_media" style="margin-top:0px">
- <!-- 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 %}
|