For the employment plugin
authorSteve Sutton <steve@gaslightmedia.com>
Mon, 30 Nov 2015 17:13:57 +0000 (12:13 -0500)
committerSteve Sutton <steve@gaslightmedia.com>
Mon, 30 Nov 2015 17:13:57 +0000 (12:13 -0500)
page-260.php [new file with mode: 0644]

diff --git a/page-260.php b/page-260.php
new file mode 100644 (file)
index 0000000..e15ea33
--- /dev/null
@@ -0,0 +1,56 @@
+<?php get_header(); ?>
+<header>
+    <?php get_template_part('parts/top-bar_main');?>
+    <?php get_template_part('parts/off-canvas_main');?>
+    <?php get_template_part('parts/head-image');?>
+</header>
+    <main class="page-inside">
+        <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 medium-8 columns">
+                <?php
+                if (shortcode_exists('glmjobs')) {
+                    $applyOnline = (isset($_REQUEST['applyOnline']))
+                        ? filter_var($_REQUEST['applyOnline'], FILTER_VALIDATE_INT)
+                        : false;
+                    $job = (isset($_REQUEST['job']))
+                        ? filter_var($_REQUEST['job'], FILTER_VALIDATE_INT)
+                        : false;
+                    $search = (isset($_REQUEST['glm_job_search']))
+                        ? filter_var($_REQUEST['glm_job_search'], FILTER_VALIDATE_BOOLEAN)
+                        : false;
+                }
+                ?>
+            <?php if (!$search && !$job && !$applyOnline):?>
+                    <?php if(have_posts()) : while(have_posts()): the_post();?>
+                    <?php the_content();?>
+                    <?php endwhile; else:?>
+                    <p><?php _e('Sorry, no posts yet');?></p>
+                    <?php endif;?>
+            <?php endif;?>
+            <?php if (shortcode_exists('glmjobs')) {echo do_shortcode('[glmjobs]');}?>
+                </div>
+                <div class="small-12 medium-4 medium-offset-0 large-offset-1 large-3 columns small-text-left">
+                    <div class="sidebar">
+                        <h2>Central Reservations</h2>
+                        <h3>800-737-1899</h3>
+                        <h2>Email</h2>
+                        <a href="mailto:hospitality@staffords.com">hospitality@staffords.com</a>
+                        <h2>Stafford's Hospitality</h2>
+                        <p>PO Box 657<br>Petoskey, Michigan 49770</p>
+                        <ul>
+                            <li><a class="facebook" target="_blank" href="https://www.facebook.com/staffordshospitality"></a></li>
+                            <li><a class="tweet" target="_blank" href="https://twitter.com/petoskeylodging"></a></li>
+                            <li><a class="pin" target="_blank" href="https://www.pinterest.com/staffordsnmich/"></a></li>
+                            <li><a class="youtube" target="_blank" href="https://www.youtube.com/user/staffordsnmichigan"></a></li>
+                        </ul>
+                    </div>
+                </div>
+            </div>
+        </div>
+<?php get_footer(); ?>