404 page.
authorLaury GvR <laury@gaslightmedia.com>
Tue, 8 Dec 2015 18:33:38 +0000 (13:33 -0500)
committerLaury GvR <laury@gaslightmedia.com>
Tue, 8 Dec 2015 18:33:38 +0000 (13:33 -0500)
404.php [new file with mode: 0644]

diff --git a/404.php b/404.php
new file mode 100644 (file)
index 0000000..0694b00
--- /dev/null
+++ b/404.php
@@ -0,0 +1,61 @@
+<?php
+/**
+ * The template for displaying 404 pages (Not Found)
+ *
+ * @package WordPress
+ * @subpackage Twenty_Thirteen
+ * @since Twenty Thirteen 1.0
+ */
+?>
+<?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/slide-show');?>
+</header>
+<main class="page-inside">
+    <div id="content-wrapper">
+        <div class="row">
+            <?php
+            get_template_part('parts/glm-blocks');
+            ?>
+        </div>
+        <div class="row">
+            <div id="main-content" class="small-12 medium-8 columns">
+
+            <header class="page-header">
+                    <h1 class="page-title"><?php _e( 'Page Not Found', 'staffords' ); ?></h1>
+            </header>
+
+            <div class="page-wrapper">
+                    <div class="page-content">
+                            <p><?php _e( 'The page you were looking for was not found.', 'staffords' ); ?></p>
+                            <p>Please verify that you have the correct URL entered into your address bar above, 
+                                or try using the navigation menu to reach your intended destination.</p>
+                    </div><!-- .page-content -->
+            </div><!-- .page-wrapper -->
+
+            </div>
+            <div class="small-12 medium-4 medium-offset-0 large-offset-1 large-3 columns small-text-left">
+                <div class="sidebar">
+                    <ul class="vcard">
+                        <li class="type">Central Reservations</li>
+                        <li class="tel">800-737-1899</li>
+                        <li class="type">Email</li>
+                        <li class="email"><a href="mailto:hospitality@staffords.com">hospitality@staffords.com</a></li>
+                        <li class="fn">Stafford's Hospitality</li>
+                        <li class="street-address">PO Box 657</li>
+                        <li class="locality">Petoskey, <span class="state">Michigan</span> <span class="zip">49770</span></li>
+                    </ul>
+                    <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(); ?>
+