<?php get_header(); ?>
<main class="page-inside">
- <?php if (is_page("kitchensink")) {
- get_template_part('parts/glm-kitchen-sink');
- } else { ?>
- <!-- kitchensink check - delete me before going live -->
<div id="content-wrapper">
<div class="row">
<div id="main-content" class="small-12 columns">
-->
</div>
</div>
- <?php } ?> <!-- end kitchensink check - delete me before going live -->
<?php get_footer(); ?>
--- /dev/null
+<?php get_header(); ?>
+<main class="page-inside">
+ <div id="content-wrapper">
+ <div class="row">
+ <div id="main-content" class="small-12 columns">
+ <?php if(have_posts()) : while(have_posts()): the_post();?>
+ <?php the_content();?>
+ <?php endwhile; else:?>
+ <p><?php _e('Sorry, no results found.');?></p>
+ <?php endif;?>
+ <p>Fill out this form to request a reservation or send us an email
+ <a href="mailto:rentals@parrotslanding.com">rentals@parrotslanding.com</a>
+ . Be sure to include the dates, and equipment desired. We would love to hear form you!
+ </p>
+ <?php echo do_shortcode('[contact-form-7 id="48" title="Contact form 1"]');?>
+ </div>
+<!--
+ <div class="small-12 medium-6 large-4 columns small-text-center medium-text-left">
+ <?php //get_sidebar(); ?>
+ </div>
+-->
+ </div>
+ </div>
+<?php get_footer(); ?>