<?php
/* setup includes */
require_once('includes/master.inc.php');
/* setup page - EDIT THIS */
define("PAGE_NAME", t("contact_page_name"));
define("PAGE_DESCRIPTION", t("contact_meta_description"));
define("PAGE_KEYWORDS", t("contact_meta_keywords"));
/* header section */
require_once('_header.php');
/* title section - EDIT THIS */
echo htmlHelpers::createPageTitleHTML("Contact us");
?>
<div class='pageMainContent'>
<!-- PAGE CONTENT GOES BELOW HERE -->
<!-- Your Content goes here -->
<!-- PAGE CONTENT GOES ABOVE HERE -->
</div>
<?php
require_once('_footer.php');
?>