summaryrefslogtreecommitdiff
path: root/templates/contact_form/contact_form.html
diff options
context:
space:
mode:
authorluxagraf@c63593aa-01b0-44d9-8516-4b9c7e931d7f <luxagraf@c63593aa-01b0-44d9-8516-4b9c7e931d7f>2010-01-30 19:19:30 +0000
committerluxagraf@c63593aa-01b0-44d9-8516-4b9c7e931d7f <luxagraf@c63593aa-01b0-44d9-8516-4b9c7e931d7f>2010-01-30 19:19:30 +0000
commit0882d73ca1ba4c84ce24c946548c80d9e4d1c04e (patch)
tree605e2284e175e80477fd7b6a6e9e2a2fcae94236 /templates/contact_form/contact_form.html
parent7300519c054838511ba2584394620d0841b88e5f (diff)
added topics to posts
Diffstat (limited to 'templates/contact_form/contact_form.html')
-rw-r--r--templates/contact_form/contact_form.html26
1 files changed, 18 insertions, 8 deletions
diff --git a/templates/contact_form/contact_form.html b/templates/contact_form/contact_form.html
index f167676..0815ef4 100644
--- a/templates/contact_form/contact_form.html
+++ b/templates/contact_form/contact_form.html
@@ -4,8 +4,8 @@
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 metadescription %}Contact Luxagraf: Want to know something more about somewhere I've been? Or something about the website? Drop me an e-mail and I'll get back to you as soon as I can.{%endblock%}
+{% block pagetitle %}Get in Touch | Luxagraf {% endblock %}
{% block metakeywords %}contact, get in touch, drop a line{%endblock%}
{#==============================================
@@ -19,17 +19,27 @@ Contact Me
{%block primary%}
+<article>
+<section id="post">
+<h1>Contact Me</h1>
+
<div class="form-holder">
<form method="post" action="" class="contact-form">
-<dl>
+<ul>
{% 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 %}
+ <li>
+ <dl>
+ <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 %}
+ </dl>
+ </li>
{% endfor %}
-</dl>
+</ul>
<input type="submit" class="button" value="Contact" />
</form>
</div>
+</section>
+</article>
{%endblock%} \ No newline at end of file