-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f2d23c2
commit 3f8e859
Showing
7 changed files
with
75 additions
and
75 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
<?php | ||
//Template Name: Regional Contact Page | ||
?> | ||
|
||
<?php get_header(); ?> | ||
|
||
<?php get_template_part('blocks/breadcrumbs'); ?> | ||
|
||
<div class="content regional-contact contact"> | ||
<div class="container"> | ||
<div class="row-fluid"> | ||
|
||
<div class="span6"> | ||
<h1><?php the_title(); ?></h1> | ||
|
||
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> | ||
|
||
<?php the_content(); ?> | ||
|
||
<?php endwhile; else: ?> | ||
<p><?php _e('Sorry, no content has been found'); ?></p> | ||
<?php endif; ?> | ||
</div> | ||
|
||
|
||
<div class="span6"> | ||
<?php | ||
$form = get_field('select_a_form'); | ||
gravity_form_enqueue_scripts($form->id, true); | ||
gravity_form($form->id, false, true, false, '', true, 1); | ||
?> | ||
</div> | ||
|
||
</div> | ||
|
||
</div><!-- END OF container DIV --> | ||
</div><!-- END OF content DIV --> | ||
|
||
<?php get_template_part('blocks/maps'); ?> | ||
|
||
<div class="content contact"> | ||
<div class="container"> | ||
<div class="row-fluid"> | ||
<div class="span12"> | ||
<h3 class="centered">Key Contacts</h3> | ||
</div> | ||
</div> | ||
<div class="row-fluid"> | ||
<div class="span6 offset3"> | ||
<div class="keyContacts"> | ||
<?php echo get_field('key_contacts_content'); ?> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<?php get_footer(); ?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters