12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- {% extends "base.html" %}
- {% block flag_img_src %}{{MEDIA_URL}}images/headers/remembrancesround440.gif{% endblock %}
- {% block flag_descrip %}Remembering our loved ones.{% endblock %}
- {% block content %}
- <div style="width:100%; margin:0; padding:0">
- <div class="main_content_left">
- <div style="float:left; padding:0px; margin:5px; text-align:center; border-width:1px; border-style:solid; width:48%; height:170px">
- <h1><a href="{% url rm-remembrance-index %}">Remembrances</a></h1>
- <p>Obituaries about people connected with our area who have died.</p>
- </div>
- <div style="float:left; padding:0px; margin:5px; text-align:center; border-width:1px; border-style:solid; width:48%; height:170px">
- <h1><a href="{% url rm-announcement-index %}">Death Announcements</a></h1>
- <p>Brief information about the deaths of people connected to our area.</p>
- </div>
- <div style="float:left; padding:0px; margin:5px; text-align:center; border-width:1px; border-style:solid; width:98%; height:170px">
- <h1><a href="{% url rm-inmemoriam-index %}">In Memoriam</a> & <a href="{% url rm-service-index %}">Memorial Services</a></h1>
- <p>Commemorations from our readers.</p>
- </div>
- <div style="float:left; padding:15px; margin-top:45px; margin-left:4px; text-align:center; background-color: #ccc; width:95%; height:150px">
- <h3>Remembrance submission information</h3>
- <p style="text-align:left">Remembrances and In Memoriam advertising and death and memorial service announcements provide information about the people in our communities.
- For information about purchasing a Remembrance online and in our newspapers and for pricing, please visit our <a href="https://penobscotbaypress.com/about/advertise/">sales department contact page</a>.</p>
-
- </div>
- </div>
- </div>
- <div class="sidebar_right_media" style="margin-top:4px">
- <!-- Block Ad BEGIN -->
- {% load adzone_tags %}
- {% random_zone_ad '' 'remembrances' %}
- <!-- 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 %}
|