--- /dev/null
+<?php
+/*
+Template Name: Sidebar Template
+*/
+?>
+<?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">
+ <?php
+ get_template_part('parts/bread-crumbs');
+ ?>
+ </div>
+ <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;?>
+ </div>
+<!--
+ <div class="small-12 medium-6 large-4 columns small-text-center medium-text-left">
+ <?php get_sidebar(); ?>
+ </div>
+-->
+ </div>
+ </div>
+ <?php } ?> <!-- end kitchensink check - delete me before going live -->
+<?php get_footer(); ?>
\ No newline at end of file