diff options
Diffstat (limited to 'templates/contact_form')
-rw-r--r-- | templates/contact_form/contact_form.html | 73 | ||||
-rw-r--r-- | templates/contact_form/contact_form.txt | 5 | ||||
-rw-r--r-- | templates/contact_form/contact_form_sent.html | 25 | ||||
-rw-r--r-- | templates/contact_form/contact_form_subject.txt | 1 |
4 files changed, 104 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 diff --git a/templates/contact_form/contact_form.txt b/templates/contact_form/contact_form.txt new file mode 100644 index 0000000..701b8bb --- /dev/null +++ b/templates/contact_form/contact_form.txt @@ -0,0 +1,5 @@ +Message from luxagraf: + +Name: {{name}} + +Wrote: {{body}}
\ No newline at end of file diff --git a/templates/contact_form/contact_form_sent.html b/templates/contact_form/contact_form_sent.html new file mode 100644 index 0000000..adeabb6 --- /dev/null +++ b/templates/contact_form/contact_form_sent.html @@ -0,0 +1,25 @@ +{% extends 'contact_form/contact_form.html' %} + +{#============================================== +Fill in the Title And Dateline Blocks +================================================#} + +{%block title %} +Thank You +{%endblock%} + + +{% block dateline %} +Thanks for sharing your thoughts +{% endblock%} + + +{#============================================== + Primary Content +================================================#} + +{%block primary%} + +<p>Thanks for sharing your thoughts, I will make an effort to respond promptly</p> + +{% endblock %}
\ No newline at end of file diff --git a/templates/contact_form/contact_form_subject.txt b/templates/contact_form/contact_form_subject.txt new file mode 100644 index 0000000..9719f2c --- /dev/null +++ b/templates/contact_form/contact_form_subject.txt @@ -0,0 +1 @@ +[luxagraf] {{subject_line}}
\ No newline at end of file |