| 1 |
<?php |
| 2 |
/* |
| 3 |
Template Name: Inquiry |
| 4 |
* <meta content="charset=UTF-8"> |
| 5 |
* @package Welcart |
| 6 |
* @subpackage Welcart Default Theme |
| 7 |
*/ |
| 8 |
get_header(); |
| 9 |
?> |
| 10 |
|
| 11 |
<div id="content" class="two-column"> |
| 12 |
<h1 class="pagetitle"><?php _e('Visit/Contact Us','usces') ?></h1> |
| 13 |
<div class="catbox"> |
| 14 |
<?php if (have_posts()) : while (have_posts()) : the_post(); ?> |
| 15 |
<div class="inqbox"> |
| 16 |
<?php the_content(); ?> |
| 17 |
<?php usces_the_inquiry_form(); ?> |
| 18 |
<?php edit_post_link(__('Edit this'), '<p>', '</p>'); ?> |
| 19 |
</div> |
| 20 |
<?php endwhile; endif; ?> |
| 21 |
</div><!-- end of catbox --> |
| 22 |
</div><!-- end of content --> |
| 23 |
|
| 24 |
<?php get_sidebar( 'other' ); ?> |
| 25 |
|
| 26 |
<?php get_footer(); ?> |
| 27 |
|