123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <!DOCTYPE html>
- <html>
- <head>
- <title></title>
- </head>
- <body>
- {% if title %}<p>TITLE: {{ title }}</p>{% endif %}
- {% if account_number %}<p>ACCOUNT NUMBER: {{ account_number }}</p>{% endif %}
- <br>
- <br>
- <p>OLD ADDRESS:
- {% with address=old_address %}
- {% include "storefront/address.inc" %}
- {% endwith %}
- </p>
- <br>
- <br>
- <p>
- NEW ADDRESS:
- {% with address=new_address %}
- {% include "storefront/address.inc" %}
- {% endwith %}
- </p>
- <br>
- <br>
- {% if date_effective %}
- <p>
- DATE EFFECTIVE:
- {{ date_effective }}
- {% if date_effective = 'RANGE' %}
- From: {{ date_from }}
- To: {{ date_to }}
- {% endif %}
- </p>
- </p>
- {% endif %}
- <br>
- <p><img src="https://penobscotbaypress.com/media/images/headers/pbp_sharing_logo_small.jpg"><br>
- <strong>Penobscot Bay Press Community Information Services</strong><br>
- PO Box 36, 69 Main St., Stonington, ME 04681<br>
- 207-367-2200<br>
- <a href="http://penobscotbaypress.com">penobscotbaypress.com</a></p>
- <br>
- </body>
- </html>
|