blob: 486408575500e3634afd29934b2a01340f8e83cf (
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
{% 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 dateline %}
Share your thoughts, ask a question, etc
{% endblock%}
{#==============================================
Primary Content
================================================#}
{%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%}
{#==============================================
Secondary Content
================================================#}
{% block right %}
<h4>Thanks for visting luxagraf</h4>
<p class="graf">
If you've got a question, comment, or thought you'd like to share, I'd love to hear it. But keep in mind that I'm not the best correspondent, however, rest assured that I do read every email I get even if I don't always respond in a timely fashion.
</p>
{%endblock%}
{#==============================================
This page shows Photos in the bottom left column
so we need to override the books block
==============================================#}
{% block books %}
{% endblock %}
{% block photos %}
{% endblock %}
|