{% extends "newsroom/base.html" %} {% block og_title %}{{archive.title}}{% endblock %} {% block og_type %}Article{% endblock %} {% block og_url %}{{archive.get_absolute_url}}{% endblock %} {% block og_description %}{{archive.description}}{% endblock %} {% block og_image %}{% if archive.lead_image %}{{MEDIA_URL}}{{archive.lead_image}}{% else %}{{MEDIA_URL}}images/headers/pbp_sharing_logo.jpg{% endif %}{% endblock %} {% block title %}{{archive.title}} | Community News Archives | Penobscot Bay Press{% endblock %} {% block description %}{{archive.body|truncatewords:60}} {% endblock %} {% block flag_img_src %}{{MEDIA_URL}}images/headers/archivesround440.gif{% endblock %} {% block flag_descrip %}Short-term archives, videos, slideshows and special features {% endblock %} {% block content %} {% load markup typogrify humanize %}

{{ archive.paper }} Archives
Return to Archives & Multimedia

{% if archive.lead_image %} {{archive}}

{% else %} {{archive.title}} {% endif %} {{archive.dateline}}
{{archive|cut:"archive"}} {{archive.description|markdown|typogrify}} {% if archive.pdf_documents.all %}

Documents

    {% for doc in archive.pdf_documents.all|dictsortreversed:"published_on" %}
  1. {{doc.title}}
    {% for e in doc.webedition_set.all %}{% if forloop.first %}{{e.paper}}, {{e.published_on|date:"n/j/y"}}{% endif %}{% endfor %}
  2. {% endfor %}
{% endif %} {% if archive.movies.all %}

Movies

    {% for movie in archive.movies.all %}
  1. {{movie.title}}
  2. {% endfor %}
{% endif %} {% if archive.slideshows.all %}

Slideshows

    {% for ss in archive.slideshows.all %}
  1. {{ss.title}}
  2. {% endfor %}
{% endif %} {% if archive.galleries.all %}

Galleries

    {% for gallery in archive.galleries.all %}
  1. {{gallery.title}}
  2. {% endfor %}
{% endif %} {% if archive.stories.all %} {% if archive.group_by == 'type' %}

Articles

    {% for article in archive.stories.all|dictsortreversed:"published_on" %}
  1. {{article.hed}}
    {% for e in article.paper_editions.all %}{% if forloop.first %}{{e.paper}}, {{e.published_on|date:"n/j/y"}}{% endif %}{% endfor %}
  2. {% endfor %}
{% else %} {% if archive.group_by == 'dline' %} {% regroup archive.stories.all|dictsort:"dateline.title" by dateline as dateline_list %}

Articles

{% for dline in dateline_list %}

{{dline.grouper}}

    {% for article in dline.list|dictsortreversed:"published_on" %}
  1. {{article.hed}}
    {% for e in article.webedition_set.all %}{% if forloop.first %}{{e.paper}}, {{e.published_on|date:"n/j/y"}}{% endif %}{% endfor %}
  2. {% endfor %}
{% endfor %} {% else %} {% endif %} {% endif %} {% endif %} {% if archive.editorials.all %} {% if archive.group_by == 'type' %}

Opinion

    {% for opinion in archive.editorials.all %}
  1. {{opinion.hed}}
    {% for e in opinion.webedition_set.all %}{% if forloop.first %}{{e.paper}}, {{e.published_on|date:"n/j/y"}}{% endif %}{% endfor %} {% endfor %}
{% else %} {% if archive.group_by == 'dline' %} {% regroup archive.editorials.all|dictsort:"dateline.title" by dateline as dateline_list %}

Opinion

{% for dline in dateline_list %}

{{dline.grouper}}

    {% for opinion in dline.list|dictsortreversed:"published_on" %}
  1. {{opinion.hed}}
    {% for e in opinion.webedition_set.all %}{% if forloop.first %}{{e.paper}}, {{e.published_on|date:"n/j/y"}}{% endif %}{% endfor %} {% endfor %}
{% endfor %} {% endif %} {% endif %} {% endif %}

Share this page


             

Return to the Community News home page.

{% endblock %}