diff options
author | luxagraf@c63593aa-01b0-44d9-8516-4b9c7e931d7f <luxagraf@c63593aa-01b0-44d9-8516-4b9c7e931d7f> | 2009-01-05 04:07:10 +0000 |
---|---|---|
committer | luxagraf@c63593aa-01b0-44d9-8516-4b9c7e931d7f <luxagraf@c63593aa-01b0-44d9-8516-4b9c7e931d7f> | 2009-01-05 04:07:10 +0000 |
commit | 637d71d2c3a7c1c65a931e1eb094052a095cdf05 (patch) | |
tree | ca34a2fead939b133143ec7647a9437d52c89075 /templates/contact_form/contact_form.html |
have at it
Diffstat (limited to 'templates/contact_form/contact_form.html')
-rw-r--r-- | templates/contact_form/contact_form.html | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/templates/contact_form/contact_form.html b/templates/contact_form/contact_form.html new file mode 100644 index 0000000..4864085 --- /dev/null +++ b/templates/contact_form/contact_form.html @@ -0,0 +1,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 %}
\ No newline at end of file |