comparison mysite/templates/band/contact.html @ 1:0dcfcdf50c62

Initial import of Madeira project from the private repository.
author Brian Neal <bgneal@gmail.com>
date Mon, 06 Apr 2009 03:10:59 +0000
parents
children
comparison
equal deleted inserted replaced
0:df0370bfe3f0 1:0dcfcdf50c62
1 {% extends 'band/base.html' %}
2 {% block title %}The Madeira | Contact{% endblock %}
3 {% block content %}
4 <h1>Madeira Contact Info</h1>
5 <p>For general band inquiries, send email to: <a href="mailto:{{ config.contact_email }}">{{ config.contact_email }}</a>.</p>
6 <p>To contact individual band members:</p>
7 <ul>
8 {% for member in band %}
9 {% if member.email %}
10 <li>{{ member.name }}: <a href="mailto:{{ member.email }}">{{ member.email }}</a></li>
11 {% endif %}
12 {% endfor %}
13 </ul>
14 {% endblock %}