1234567891011121314151617181920212223242526272829303132333435363738394041 |
- {% extends "base.html" %}
- {% block rss %}<link rel="alternate" type="application/rss+xml" href="{% url cl-feed %}" title="RSS feed for Documents at Penobscot Bay Press" />{% endblock %}
- {% block meta_keywords %}documents, penobscot bay press, maine, ads{% endblock %}
- {% block title %}Documents | Penobscot Bay Press {% endblock %}
- {% block flag_link %}{% url cl-index %}{% endblock %}
- {% block flag_descrip %}Classified advertisments covering the unique towns and islands of East<br/> Penobscot and Blue Hill Bays, Maine.{% endblock %}
- {% block flag_img_src %}{{MEDIA_URL}}images/headers/comnewsround440.gif{% endblock %}
- {% block flag_update_stamp %}{% endblock %}
- {% block content %}
- <td align="center" valign="top" bgcolor="white" width="440">
- <table width="444" border="0" cellspacing="8" cellpadding="0" height="637">
- <tr height="38">
- <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>
- </tr>
- {% for item in objects %}
- <tr height="17">
- <td align="center" valign="middle" width="205" height="17">
- {% load convert_tags %}
- <p style="float:left; overflow:auto; width:100%"><a href="{{item.get_absolute_url}}">{% thumbnail item.preview.url "300" %}</a></p>
- <p><a href="{{item.get_absolute_url}}">{{item}}</a></p>
- <hr />
- </td>
- {% if objects.count == 1%}</tr>{% endif %}
- {% cycle '' '</tr><tr height="17">' %}
- {% endfor %}
- </table>
- </td>
- {% endblock %}
- {% block ads %}
- <td valign="top" bgcolor="white" width="120">
- <table width="64" border="0" cellspacing="0">
- {% load adzone_tags %}
- {% random_zone_ad_block '' 'index' 4 %}
- <tr height="107">
- <td height="107">
- {% random_zone_ad '' 'house-index' %}
- </td>
- </tr>
- </table>
- {% endblock %}
|