--- /dev/null
+<?php
+/*
+Template Name: Full Width Template
+*/
+?>
+<?php get_header(); ?>
+<main class="page-inside">
+ <div id="header-image" class="page-header">
+ <?php echo glm_get_header();?>
+ </div>
+ <div id="page-title" class="text-center">
+ <?php echo "<h1>" . get_the_title() . "</h1>"; ?>
+ </div>
+ <div id="content-wrapper">
+ <div class="row">
+ <div id="main-content" class="small-12 columns">
+ <?php
+ get_template_part('parts/bread-crumbs');
+ ?>
+ <?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