Adding template for theme
authorSteve Sutton <steve@gaslightmedia.com>
Thu, 2 Nov 2017 15:38:09 +0000 (11:38 -0400)
committerSteve Sutton <steve@gaslightmedia.com>
Thu, 2 Nov 2017 15:38:09 +0000 (11:38 -0400)
For page without header image.

page-noheaderimg-template.php [new file with mode: 0644]

diff --git a/page-noheaderimg-template.php b/page-noheaderimg-template.php
new file mode 100644 (file)
index 0000000..ecb37d1
--- /dev/null
@@ -0,0 +1,28 @@
+<?php
+/*
+Template Name: No Header Image Template
+*/
+
+get_header(); ?>
+<main class="page-inside">
+    <div class="feature-img">
+    </div>
+        <div id="content-wrapper">
+            <div class="row">
+                <?php
+                get_template_part('parts/bread-crumbs');
+                ?>
+            </div>
+            <div class="row">
+                <div id="main-content" class="small-12 columns">
+                   <?php if(is_page(802)){ ?>
+                          <iframe width='180' height='180' src='//www.bluetoad.com/flippingGen.php?i=300219&m=36331&ttype=standarddynamic&popup=true&h=hosts&lim=&remToolbars=true&roll=?' noresize='noresize' frameborder='0' border='0' cellspacing='0' scrolling='no' marginwidth='0' marginheight='0' allowtransparency='yes'></iframe>
+                   <?php } ?>
+                    <?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>
+<?php get_footer(); ?>