made a php file that can serve the interior slideshow
authorIan Weller <ian@gaslightmedia.com>
Fri, 4 Sep 2015 19:45:04 +0000 (15:45 -0400)
committerIan Weller <ian@gaslightmedia.com>
Fri, 4 Sep 2015 19:45:04 +0000 (15:45 -0400)
page-slideshow.php [new file with mode: 0644]

diff --git a/page-slideshow.php b/page-slideshow.php
new file mode 100644 (file)
index 0000000..30863fc
--- /dev/null
@@ -0,0 +1,20 @@
+<?php get_header(); ?>
+<main class="page-inside">
+    <div id="content-wrapper">
+        <div class="row">
+            <?php
+            get_template_part('parts/bread-crumbs');
+            ?>
+        </div>
+        <div class="row collapse">
+            <?php get_template_part('parts/slide-show');?>
+            <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;?>
+            </div>
+        </div>
+    </div>
+<?php get_footer(); ?>    
\ No newline at end of file