view mysite/templates/band/contact.html @ 8:3e22a6fde2d2

Updated copyright in footer. Corrected the URL that appears in the mass mailings for unsubscribing to the mailing list.
author Brian Neal <bgneal@gmail.com>
date Tue, 02 Jun 2009 00:47:37 +0000
parents 0dcfcdf50c62
children
line wrap: on
line source
{% extends 'band/base.html' %}
{% block title %}The Madeira | Contact{% endblock %}
{% block content %}
<h1>Madeira Contact Info</h1>
<p>For general band inquiries, send email to: <a href="mailto:{{ config.contact_email }}">{{ config.contact_email }}</a>.</p>
<p>To contact individual band members:</p>
<ul>
{% for member in band %}
   {% if member.email %}
      <li>{{ member.name }}: <a href="mailto:{{ member.email }}">{{ member.email }}</a></li>
   {% endif %}
{% endfor %}
</ul>
{% endblock %}