index.html 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. {% extends "base.html" %}
  2. {% block flag_img_src %}{{MEDIA_URL}}images/headers/remembrancesround440.gif{% endblock %}
  3. {% block flag_descrip %}Remembering our loved ones.{% endblock %}
  4. {% block content %}
  5. <div style="width:100%; margin:0; padding:0">
  6. <div class="main_content_left">
  7. <div style="float:left; padding:0px; margin:5px; text-align:center; border-width:1px; border-style:solid; width:48%; height:170px">
  8. <h1><a href="{% url rm-remembrance-index %}">Remembrances</a></h1>
  9. <p>Obituaries about people connected with our area who have died.</p>
  10. </div>
  11. <div style="float:left; padding:0px; margin:5px; text-align:center; border-width:1px; border-style:solid; width:48%; height:170px">
  12. <h1><a href="{% url rm-announcement-index %}">Death Announcements</a></h1>
  13. <p>Brief information about the deaths of people connected to our area.</p>
  14. </div>
  15. <div style="float:left; padding:0px; margin:5px; text-align:center; border-width:1px; border-style:solid; width:98%; height:170px">
  16. <h1><a href="{% url rm-inmemoriam-index %}">In Memoriam</a> &amp; <a href="{% url rm-service-index %}">Memorial Services</a></h1>
  17. <p>Commemorations from our readers.</p>
  18. </div>
  19. <div style="float:left; padding:15px; margin-top:45px; margin-left:4px; text-align:center; background-color: #ccc; width:95%; height:150px">
  20. <h3>Remembrance submission information</h3>
  21. <p style="text-align:left">Remembrances and In Memoriam advertising and death and memorial service announcements provide information about the people in our communities.
  22. 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>
  23. </div>
  24. </div>
  25. </div>
  26. <div class="sidebar_right_media" style="margin-top:4px">
  27. <!-- Block Ad BEGIN -->
  28. {% load adzone_tags %}
  29. {% random_zone_ad '' 'remembrances' %}
  30. <!-- Block Ad END -->
  31. </div>
  32. <div style="padding-left:12px; padding-right:12px; padding-bottom:0px">
  33. <!-- AddThis Button BEGIN -->
  34. <script type="text/javascript">var addthis_config = {"data_track_addressbar":true};</script>
  35. <script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=penbaypress"></script>
  36. <!-- AddThis Button END -->
  37. <p>
  38. {% for s in object.sites.all|dictsortreversed:"id"%}
  39. {% if forloop.first %}
  40. <a class="return" href="http://{{s}}">{{s.name}} home page</a>
  41. {% else %}
  42. <span style="margin-left:15px; margin-right:15px">&#8226;</span><a class="return" href="http://{{s}}">{{s.name}} home page</a>
  43. {% endif %}
  44. {% endfor %}
  45. </p>
  46. </div>
  47. <!-- AddThis Smart Layers BEGIN -->
  48. <!-- Go to http://www.addthis.com/get/smart-layers to customize -->
  49. <script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=penbaypress"></script>
  50. <script type="text/javascript">
  51. addthis.layers({
  52. 'theme' : 'transparent',
  53. 'share' : {
  54. 'position' : 'right',
  55. 'services' : 'facebook,twitter,email,print,gmail,tumblr,more',
  56. }
  57. });
  58. </script>
  59. <!-- AddThis Smart Layers END -->
  60. {% endblock %}