made a template to demostrate the blocks
authorIan Weller <ian@gaslightmedia.com>
Wed, 3 Aug 2016 17:12:07 +0000 (13:12 -0400)
committerIan Weller <ian@gaslightmedia.com>
Wed, 3 Aug 2016 17:12:07 +0000 (13:12 -0400)
blocks-demo-template.php [new file with mode: 0644]

diff --git a/blocks-demo-template.php b/blocks-demo-template.php
new file mode 100644 (file)
index 0000000..5af0a09
--- /dev/null
@@ -0,0 +1,35 @@
+<?php
+/*
+Template Name: GLM Associate Template
+*/
+?>
+<?php get_header(); ?>
+<main class="page-inside">
+    <div class="feature-img">
+        <?php 
+//            echo glm_get_header(); 
+        get_template_part('parts/slide-show');    
+        ?>
+    </div>
+        <div id="content-wrapper">
+            <div class="row">
+                <?php
+                get_template_part('parts/bread-crumbs');
+                ?>
+            </div>
+            <div class="row">
+                <?php get_template_part('parts/glm-blocks');?>
+            </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(); ?>