Adding the contact form and some other things
authorSteve Sutton <steve@gaslightmedia.com>
Mon, 20 Jun 2016 17:54:30 +0000 (13:54 -0400)
committerSteve Sutton <steve@gaslightmedia.com>
Mon, 20 Jun 2016 17:54:30 +0000 (13:54 -0400)
get rid of the kitchen sink stuff

index.php
page-38.php [new file with mode: 0644]

index ffab027..66b45fc 100644 (file)
--- a/index.php
+++ b/index.php
@@ -1,9 +1,5 @@
 <?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">
@@ -20,5 +16,4 @@
 -->
             </div>
         </div>
-        <?php } ?> <!-- end kitchensink check - delete me before going live -->
 <?php get_footer(); ?>
diff --git a/page-38.php b/page-38.php
new file mode 100644 (file)
index 0000000..76d522b
--- /dev/null
@@ -0,0 +1,24 @@
+<?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(); ?>