diff 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
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mysite/templates/band/contact.html	Mon Apr 06 03:10:59 2009 +0000
@@ -0,0 +1,14 @@
+{% 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 %}