index.html 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {% extends "base.html" %}
  2. {% block rss %}<link rel="alternate" type="application/rss+xml" href="{% url cl-feed %}" title="RSS feed for Documents at Penobscot Bay Press" />{% endblock %}
  3. {% block meta_keywords %}documents, penobscot bay press, maine, ads{% endblock %}
  4. {% block title %}Documents | Penobscot Bay Press {% endblock %}
  5. {% block flag_link %}{% url cl-index %}{% endblock %}
  6. {% block flag_descrip %}Classified advertisments covering the unique towns and islands of East<br/> Penobscot and Blue Hill Bays, Maine.{% endblock %}
  7. {% block flag_img_src %}{{MEDIA_URL}}images/headers/comnewsround440.gif{% endblock %}
  8. {% block flag_update_stamp %}{% endblock %}
  9. {% block content %}
  10. <td align="center" valign="top" bgcolor="white" width="440">
  11. <table width="444" border="0" cellspacing="8" cellpadding="0" height="637">
  12. <tr height="38">
  13. <td colspan="2" align="center" valign="middle" width="429" height="38"><img src="{{MEDIA_URL}}images/headers/choosecat428.gif" alt="Choose a Category" height="32" width="428" border="0"></td>
  14. </tr>
  15. {% for item in objects %}
  16. <tr height="17">
  17. <td align="center" valign="middle" width="205" height="17">
  18. {% load convert_tags %}
  19. <p style="float:left; overflow:auto; width:100%"><a href="{{item.get_absolute_url}}">{% thumbnail item.preview.url "300" %}</a></p>
  20. <p><a href="{{item.get_absolute_url}}">{{item}}</a></p>
  21. <hr />
  22. </td>
  23. {% if objects.count == 1%}</tr>{% endif %}
  24. {% cycle '' '</tr><tr height="17">' %}
  25. {% endfor %}
  26. </table>
  27. </td>
  28. {% endblock %}
  29. {% block ads %}
  30. <td valign="top" bgcolor="white" width="120">
  31. <table width="64" border="0" cellspacing="0">
  32. {% load adzone_tags %}
  33. {% random_zone_ad_block '' 'index' 4 %}
  34. <tr height="107">
  35. <td height="107">
  36. {% random_zone_ad '' 'house-index' %}
  37. </td>
  38. </tr>
  39. </table>
  40. {% endblock %}