diff options
author | louise <louise> | 2009-12-01 12:44:51 +0000 |
---|---|---|
committer | louise <louise> | 2009-12-01 12:44:51 +0000 |
commit | dc7f440891c01d420e37ddc67a6b51b92ea08c41 (patch) | |
tree | 47715990face8e024b81c43b9962131a6e43761d /templates | |
parent | c34b55dd1b638acd52beadcec667e92e030ecb57 (diff) |
Allow more detailed templating of contact page
Diffstat (limited to 'templates')
-rw-r--r-- | templates/website/contact | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/templates/website/contact b/templates/website/contact index 1c71f2062..b1103d3f1 100644 --- a/templates/website/contact +++ b/templates/website/contact @@ -1,8 +1,15 @@ -{{ $header }} +<h1>{{ $header }}</h1> {{ $errors }} <form method="post" action="{{ $form_action }}"> <input type="hidden" name="submit_form" value="1"> + {{ $intro }} +{{ if ( $item_title ) { + "<blockquote><h2>$item_title</h2><p>$item_meta</p><p>$item_body</p></blockquote>"; + +} }} + +{{ $hidden_vals }} {{ if ( $field_errors{name}) { "<div class='form-error'>$field_errors{name}</div>"; } }} @@ -31,3 +38,5 @@ <div class="checkbox"><input type="submit" value="{{ $label_submit }}"></div> {{ $cobrand_form_elements }} </form> + +{{ $contact_details }} |