blob: f16767640f37e190edd32bc1a8fb6621421ee200 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
{% extends 'base.html' %}
{#==============================================
Load up the various metadata add-ins
================================================#}
{% block meta_description %} Contact, Get in touch with corriegreathouse.com.{%endblock%}
{% block metatitle %} - Get in Touch{% endblock %}
{% block metakeywords %}contact, get in touch, drop a line{%endblock%}
{#==============================================
Fill in the Title And Dateline Blocks
================================================#}
{%block title %}
Contact Me
{%endblock%}
{%block primary%}
<div class="form-holder">
<form method="post" action="" class="contact-form">
<dl>
{% for field in form %}
<dt>{{ field.label_tag }}</dt>
<dd>{{ field }}</dd>
{% if field.help_text %}<dd>{{ field.help_text }}</dd>{% endif %}
{% if field.errors %}<dd class="myerrors">{{ field.errors }}</dd>{% endif %}
{% endfor %}
</dl>
<input type="submit" class="button" value="Contact" />
</form>
</div>
{%endblock%}
|