diff options
Diffstat (limited to 'templates/contact_form/contact_form.html')
-rw-r--r-- | templates/contact_form/contact_form.html | 26 |
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 |