+<!--
+1. Body
+2. Header
+3. Top Bar
+4. Off Canvas
+5. Main
+ 5.1. Front Page
+ 5.2 Blog Home Page
+ 5.3 Blog Archive Page
+ 5.4 Blog Single Post
+ 5.5 Search Results
+ 5.6 Interior Page
+6. Footer
+7. Copyright
+-->
+
+<!-- Body -->
<!doctype html>
<html class="no-js" lang="en">
<head>
<div class="off-canvas-wrap" data-offcanvas>
<div class="inner-wrap">
<div id="page-wrapper">
+<!-- Header -->
<header>
<div class="row">
</div>
<!--
<div class="search-top show-for-large-up">
- <?php //get_template_part('parts/search');?>
+ <?php //get_template_part('parts/search-form');?>
</div>
-->
</header>
- <?php get_template_part('parts/top-bar');?>
- <?php get_template_part('parts/off-canvas-menu');?>
+<!-- /Header -->
+<!-- Top Bar -->
+ <nav class="top-bar text-center show-for-large-up" data-topbar role="navigation">
+ <section class="top-bar-section">
+ <?php glm_theme_top_bar(); ?>
+ </section>
+ </nav>
+ <nav class="tab-bar show-for-medium-down">
+ <section class="left-small">
+ <a class="left-off-canvas-toggle menu-icon" href="#"><span>Menu</span></a>
+ </section>
+<!-- /Top Bar --> </nav>
+<!-- Off Canvas -->
+ <aside class="left-off-canvas-menu hide-for-large-up">
+ <?php glm_theme_mobile_off_canvas(); ?>
+ <?php get_template_part('parts/search-form');?>
+ <?php if (function_exists('glm_get_clientinfo_option')) :?>
+ <ul>
+ <li><?php echo glm_get_clientinfo_option('businessName');?></li>
+ <?php if (glm_get_clientinfo_option('address')):?>
+ <li><?php echo glm_get_clientinfo_option('address');?></li>
+ <li><?php echo glm_get_clientinfo_option('city');?>, <?php echo glm_get_clientinfo_option('state');?>
+ <?php echo glm_get_clientinfo_option('zip');?></li>
+ <?php endif;?>
+ <?php if (glm_get_clientinfo_option('address2')):?>
+ <li><?php echo glm_get_clientinfo_option('address2');?></li>
+ <li><?php echo glm_get_clientinfo_option('city2');?>, <?php echo glm_get_clientinfo_option('state2');?>
+ <?php echo glm_get_clientinfo_option('zip2');?></li>
+ <?php endif;?>
+ <?php if (glm_get_clientinfo_option('phone')) :?>
+ <li><?php echo glm_get_clientinfo_option('phone');?></li>
+ <?php endif;?>
+ <?php if (glm_get_clientinfo_option('phone2')) :?>
+ <span class="bullet"> • </span><span><?php echo glm_get_clientinfo_option('phone2');?></span>
+ <?php endif;?>
+ <?php if (glm_get_clientinfo_option('email')) :?>
+ <span class="bullet"> • </span><span><?php echo glm_get_clientinfo_option('email');?></span>
+ <?php endif;?>
+ <?php if (glm_get_clientinfo_option('fax')) :?>
+ <li><?php echo glm_get_clientinfo_option('fax');?></li>
+ <?php endif;?>
+ <?php if (glm_get_clientinfo_option('extra')) :?>
+ <li><?php echo glm_get_clientinfo_option('extra');?></li>
+ <?php endif;?>
+ </ul>
+ <?php endif;?>
+ </aside>
+ <!--
+ <aside class="right-off-canvas-menu">
+
+ </aside>-->
+<!-- /Off Canvas -->
+<!-- Main -->
+ <!-- Front Page -->
<?php if (is_front_page()) { ?>
<main class="page-front">
<div class="row">
<?php get_template_part('parts/main-content');?>
<div class="small-12 medium-6 large-4 columns small-text-center medium-text-left">
- <?php get_sidebar(); ?>
+ <?php //get_sidebar(); ?>
</div>
</div>
</div>
- <!-- Front Page -->
+ <!-- /Front Page -->
+ <!-- Blog Home Page -->
<?php } elseif (is_home()) { ?>
<main class="blog-home">
<!-- <article <?php // post_class() ?> id="interior-featured">
<?php get_template_part('parts/blog-content-area'); ?>
<?php get_template_part('parts/blog-sidebar-r'); ?>
</div>
- <!-- Blog Home Page -->
+ <!-- /Blog Home Page -->
+ <!-- Blog Archive Page -->
<?php } elseif (is_archive()) { ?>
<main class="blog-archive">
<div class="row">
<?php get_template_part('parts/blog-content-area'); ?>
<?php get_template_part('parts/blog-sidebar-r'); ?>
</div>
- <!-- Blog Archive Page -->
+ <!-- /Blog Archive Page -->
+ <!-- Blog Single Post -->
<?php } elseif (is_single()) { ?>
<main class="blog-single">
<div class="row">
<div class="small-11 small-centered columns">
<div class="row">
<div class="small-12 columns">
- <article id="<?php the_ID()?>" <?php post_class()?>>
- <header class="entry-header">
- <h2 class="entry-title"><a href="<?php the_permalink(); ?>"><?php the_title();?></a></h2>
- <?php if ( has_post_thumbnail() ):?>
- <?php if (get_post_type( $post ) != "ai1ec_event") { ?>
- <div class="featured-image-wrap"><?php the_post_thumbnail("large"); ?></div>
- <?php } ?>
- <?php endif; ?>
- <span class="meta date">Posted on <?php the_time('F jS, Y') ?></span>
- </header>
- <?php echo the_content(); ?>
- </article>
+ <?php get_template_part('parts/blog-text'); ?>
<?php if ( comments_open() || get_comments_number() ) :
comments_template();
endif; ?>
</div>
<?php get_template_part('parts/blog-sidebar-r'); ?>
</div>
- <!-- Blog Single Post -->
+ <!-- /Blog Single Post -->
+ <!-- Search Result Page -->
<?php } elseif (is_search()) { ?>
<main class="search-results">
<div class="row">
<?php } ?> <!-- end empty query check -->
</div>
- <!-- Search Result Page -->
+ <!-- /Search Result Page -->
+ <!-- Interior Page -->
<?php } else { ?>
<main class="page-inside">
<div id="content-wrapper">
<div class="row">
- <?php
- get_template_part('parts/bread-crumbs');
+ <?php if(function_exists('bcn_display') && !is_front_page())
+ {
+ echo "<div class=\"breadcrumbs\">";
+ bcn_display();
+ echo "</div>";
+ }
?>
</div>
<div class="row">
</div>
</div>
<?php } ?>
+ <!-- /Interior Page -->
- </main><!--End of main-->
+ </main>
+<!-- /Main -->
+<!-- Footer -->
<footer class="main">
<?php if (is_active_sidebar('sidebar-f')) :?>
<?php dynamic_sidebar('sidebar-f');?>
<?php endif;?>
<div class="row">
- <?php get_template_part('parts/client-info-footer');?>
+ <div id="footer_address" class="row small-centered small-11 medium-6 columns">
+ <?php if (function_exists('glm_get_clientinfo_option')) :?>
+ <h2><?php echo glm_get_clientinfo_option('businessName');?></h2>
+ <?php if (glm_get_clientinfo_option('address')):?>
+ <span><?php echo glm_get_clientinfo_option('address');?></span>
+ <span class="bullet"> • </span>
+ <span><?php echo glm_get_clientinfo_option('city');?>, <?php echo glm_get_clientinfo_option('state');?>
+ <?php echo glm_get_clientinfo_option('zip');?></span>
+ <?php endif;?>
+ <?php if (glm_get_clientinfo_option('address2')):?>
+ <span class="bullet"> • </span>
+ <span><?php echo glm_get_clientinfo_option('address2');?></span>
+ <span class="bullet"> • </span>
+ <span><?php echo glm_get_clientinfo_option('city2');?>, <?php echo glm_get_clientinfo_option('state2');?>
+ <?php echo glm_get_clientinfo_option('zip2');?></span>
+ <?php endif;?>
+ <?php if (glm_get_clientinfo_option('phone')) :?>
+ <span class="bullet"> • </span><span><?php echo glm_get_clientinfo_option('phone');?></span>
+ <?php endif;?>
+ <?php if (glm_get_clientinfo_option('phone2')) :?>
+ <span class="bullet"> • </span><span><?php echo glm_get_clientinfo_option('phone2');?></span>
+ <?php endif;?>
+ <?php if (glm_get_clientinfo_option('email')) :?>
+ <span class="bullet"> • </span><span><?php echo glm_get_clientinfo_option('email');?></span>
+ <?php endif;?>
+ <?php if (glm_get_clientinfo_option('fax')) :?>
+ <span class="bullet"> • </span><span><?php echo glm_get_clientinfo_option('fax');?></span>
+ <?php endif;?>
+ <?php if (glm_get_clientinfo_option('extra')) :?>
+ <span class="bullet"> • </span><span><?php echo glm_get_clientinfo_option('extra');?></span>
+ <?php endif;?>
+ <?php endif;?>
+ </div>
</div>
</footer>
-
+<!-- /Footer -->
+<!-- Copyright -->
<div id="copyright" class="small-12 text-center row columns">
<span>Copyright © <?php echo date('Y');?> </span>
<span class="bullet"> • </span>
<span> Produced by <a target="_blank" href="http://www.gaslightmedia.com">Gaslight Media</a></span>
</div>
+<!-- /Copyright -->
</div><!--/#page-wrapper-->
<a class="exit-off-canvas"></a>
</div><!--End of inner-wrap-->
<script charset="utf-8" type="text/javascript">stLight.options({"publisher":"wp.c3d3647e-de70-4780-b71d-6b739fad685a"});var st_type="wordpress4.3.1";</script>
</body>
</html>
+<!-- Body -->
\ No newline at end of file
<div class="small-12 columns blog-feed-content">
<?php } ?>
- <article id="<?php the_ID()?>" <?php post_class()?>>
-
- <header class="entry-header">
- <h1 class="entry-title"><a href="<?php the_permalink(); ?>"><?php the_title();?></a></h1>
- <span class="meta date">Posted on <?php the_time('F jS, Y') ?></span>
- </header>
- <?php echo (function_exists('the_advanced_excerpt')) ? the_advanced_excerpt(): the_excerpt(); ?>
- <!--the_advanced_excerpt('length=200&length_type=words&no_custom=1&ellipsis=%26hellip;');-->
- <!-- This could be wrapped in php tags and be functional,
- but it is easier to change this in admin side-->
-
- </article>
+ <?php get_template_part('parts/blog-text'); ?>
</div>
</div>
<?php endwhile; ?>
--- /dev/null
+ <article id="<?php the_ID()?>" <?php post_class()?>>
+ <header class="entry-header">
+ <h1 class="entry-title"><a href="<?php the_permalink(); ?>"><?php the_title();?></a></h1>
+ <?php if ( has_post_thumbnail() ):?>
+ <?php if (get_post_type( $post ) != "ai1ec_event") { ?>
+ <div class="featured-image-wrap"><?php the_post_thumbnail("large"); ?></div>
+ <?php } ?>
+ <?php endif; ?>
+ <span class="meta date">Posted on <?php the_time('F jS, Y') ?></span>
+ </header>
+ <?php echo the_content(); ?>
+ </article>
\ No newline at end of file
+++ /dev/null
-<?php if(function_exists('bcn_display') && !is_front_page())
-{
- echo "<div class=\"breadcrumbs\">";
- bcn_display();
- echo "</div>";
-}
-?>
+++ /dev/null
-<div id="footer_address" class="row small-centered small-11 medium-6 columns">
- <?php if (function_exists('glm_get_clientinfo_option')) :?>
- <h2><?php echo glm_get_clientinfo_option('businessName');?></h2>
- <?php if (glm_get_clientinfo_option('address')):?>
- <span><?php echo glm_get_clientinfo_option('address');?></span>
- <span class="bullet"> • </span>
- <span><?php echo glm_get_clientinfo_option('city');?>, <?php echo glm_get_clientinfo_option('state');?>
- <?php echo glm_get_clientinfo_option('zip');?></span>
- <?php endif;?>
- <?php if (glm_get_clientinfo_option('address2')):?>
- <span class="bullet"> • </span>
- <span><?php echo glm_get_clientinfo_option('address2');?></span>
- <span class="bullet"> • </span>
- <span><?php echo glm_get_clientinfo_option('city2');?>, <?php echo glm_get_clientinfo_option('state2');?>
- <?php echo glm_get_clientinfo_option('zip2');?></span>
- <?php endif;?>
- <?php if (glm_get_clientinfo_option('phone')) :?>
- <span class="bullet"> • </span><span><?php echo glm_get_clientinfo_option('phone');?></span>
- <?php endif;?>
- <?php if (glm_get_clientinfo_option('phone2')) :?>
- <span class="bullet"> • </span><span><?php echo glm_get_clientinfo_option('phone2');?></span>
- <?php endif;?>
- <?php if (glm_get_clientinfo_option('email')) :?>
- <span class="bullet"> • </span><span><?php echo glm_get_clientinfo_option('email');?></span>
- <?php endif;?>
- <?php if (glm_get_clientinfo_option('fax')) :?>
- <span class="bullet"> • </span><span><?php echo glm_get_clientinfo_option('fax');?></span>
- <?php endif;?>
- <?php if (glm_get_clientinfo_option('extra')) :?>
- <span class="bullet"> • </span><span><?php echo glm_get_clientinfo_option('extra');?></span>
- <?php endif;?>
- <?php endif;?>
-</div>
-
+++ /dev/null
-<?php if (function_exists('glm_get_clientinfo_option')) :?>
-<ul>
- <li><?php echo glm_get_clientinfo_option('businessName');?></li>
- <?php if (glm_get_clientinfo_option('address')):?>
- <li><?php echo glm_get_clientinfo_option('address');?></li>
- <li><?php echo glm_get_clientinfo_option('city');?>, <?php echo glm_get_clientinfo_option('state');?>
- <?php echo glm_get_clientinfo_option('zip');?></li>
- <?php endif;?>
- <?php if (glm_get_clientinfo_option('address2')):?>
- <li><?php echo glm_get_clientinfo_option('address2');?></li>
- <li><?php echo glm_get_clientinfo_option('city2');?>, <?php echo glm_get_clientinfo_option('state2');?>
- <?php echo glm_get_clientinfo_option('zip2');?></li>
- <?php endif;?>
- <?php if (glm_get_clientinfo_option('phone')) :?>
- <li><?php echo glm_get_clientinfo_option('phone');?></li>
- <?php endif;?>
- <?php if (glm_get_clientinfo_option('phone2')) :?>
- <span class="bullet"> • </span><span><?php echo glm_get_clientinfo_option('phone2');?></span>
- <?php endif;?>
- <?php if (glm_get_clientinfo_option('email')) :?>
- <span class="bullet"> • </span><span><?php echo glm_get_clientinfo_option('email');?></span>
- <?php endif;?>
- <?php if (glm_get_clientinfo_option('fax')) :?>
- <li><?php echo glm_get_clientinfo_option('fax');?></li>
- <?php endif;?>
- <?php if (glm_get_clientinfo_option('extra')) :?>
- <li><?php echo glm_get_clientinfo_option('extra');?></li>
- <?php endif;?>
-</ul>
-<?php endif;?>
+++ /dev/null
-
-<div style="background:rgba(0,0,0,0.4);border:1px solid black;border-radius:5px;display:block;margin:5px auto;width:90%;max-width:500px">
- <ul style="columns: 2; -webkit-columns: 2; -moz-columns: 2;">
- <li><a href="#social">social</a></li>
- <li><a href="#header">header</a></li>
- <li><a href="#search">search</a></li>
- <li><a href="#slideshow">slideshow</a></li>
- <li><a href="#featured">featured</a></li>
- <li><a href="#breacrumbs">breadcrumbs</a></li>
- <li><a href="#glm-blocks">glm-blocks</a></li>
- <li><a href="#paragraphs">paragraphs</a></li>
- <li><a href="#images-background">images-background</a></li>
- <li><a href="#images-captions">images-captions</a></li>
- <li><a href="#images">images</a></li>
- <li><a href="#paragraphs">paragraphs</a></li>
- <li><a href="#test-header-fonts">test-header-fonts</a></li>
- <li><a href="#test-lists">test-lists</a></li>
- <li><a href="#test-table">test-table</a></li>
- <li><a href="#ninja-form">ninja-form</a></li>
- <li><a href="#image-gallery">image-gallery</a></li>
- <li><a href="#video-gallery">video-gallery</a></li>
- <li><a href="#event-calendar">event-calendar</a></li>
- <li><a href="#footer">footer</a></li>
- <li><a href="#address">address</a></li>
- <li><a href="#copyright">copyright</a></li>
- <li><a href="#"></a></li>
-
- <br><a name=""></a>
- </ul>
-</div>
-
-<header></header>
-
- <br><a name="social">social</a>
- <p>temporary inline style: height 32, width 32, float left.</p>
-<div id="testsocial" class="row">
- <style>
- #testsocial .soc_icon {
- height: 32px; width:32px; float: left;
- }
- </style>
-</div>
-
-<br><a name="header">header</a>
-<div id="header" class="row"></div>
-
-<br><a name="search">search</a>
-<div id="search" class="row">
- <?php
- get_template_part('parts/search');
- ?>
-</div>
-
-<div id="sample-content" class="row">
- <div id="main-content" class="small-12 medium-6 large-8 columns">
- <?php if(have_posts()) : while(have_posts()): the_post();?>
- <?php the_content();?>
- <p> <h2>sample Text in case there is no content</h2>
- Yúyo tihta atalantëa wen nu. Lau nú engë rotelë, telpë ananta ré llo. San ré yávë ohtatyaro. Vén sú telpë yanen laira. Mel ehtë teren tanga nu. Hwarma tareldar at ëar, ep man norna carcassë.
- </p>
- <?php endwhile; else:?>
- <p><?php _e('Sorry, no posts yet');?></p>
- <?php endif;?>
- </div>
- <div class="small-12 medium-6 large-4 columns small-text-center medium-text-left">
- <?php get_sidebar(); ?>
- </div>
-</div>
-
- <br><a name="slideshow">slideshow</a>
-<div id="slideshow" class="row">
- <?php get_template_part('parts/slide-show'); ?>
-</div>
-
- <br><a name="featured">featured</a>
-<div id="featured" class="row">
-</div>
-
- <br><a name="breadcrumbs">breadcrumbs</a>
-<div id="breadcrumbs" class="row">
- <?php get_template_part('parts/bread-crumbs'); ?>
-</div>
-
- <br><a name="paragraphs">paragraphs</a>
-<div id="test-paragraphs" class="row">
- <p>
- Yúyo tihta atalantëa wen nu. Lau nú engë rotelë, telpë ananta ré llo. San ré yávë ohtatyaro. Vén sú telpë yanen laira. Mel ehtë teren tanga nu. Hwarma tareldar at ëar, ep man norna carcassë.
- </p>
-</div>
-
- <br><a name="glm-blocks">glm-blocks</a>
-<div id="glm-blocks" class="row">
- <?php get_template_part('parts/glm-blocks'); ?>
-</div>
-
- <br><a name="images-background">images-background</a>
-<div id="background-images" class="row">
- <div background-image="src: '../assets/logo.png'"></div>
- <div background-image="src: '../assets/logo.png'">
- some text on an image?
- </div>
-</div>
-
- <br><a name="images-captions">images-captions</a>
-<div id="test-images-captions" class="row">
-
- <div class="wp-caption alignright">
- <img alt="This is alt text for the image" src="http://placehold.it/250x250">
- <p class="wp-caption-text">Guests and staff join for a farewell photo</p>
- </div>
- <p>
- Yúyo tihta atalantëa wen nu. Lau nú engë rotelë, telpë ananta ré llo. San ré yávë ohtatyaro. Vén sú telpë yanen laira. Mel ehtë teren tanga nu. Hwarma tareldar at ëar, ep man norna carcassë.
- </p>
- <div class="wp-caption alignleft">
- <img alt="This is alt text for the image" src="http://placehold.it/250x250">
- <p class="wp-caption-text">Guests and staff join for a farewell photo</p>
- </div>
- <p>
- Yúyo tihta atalantëa wen nu. Lau nú engë rotelë, telpë ananta ré llo. San ré yávë ohtatyaro. Vén sú telpë yanen laira. Mel ehtë teren tanga nu. Hwarma tareldar at ëar, ep man norna carcassë.
- </p>
- <div class="wp-caption aligncenter">
- <img alt="This is alt text for the image" src="http://placehold.it/250x250">
- <p class="wp-caption-text">Guests and staff join for a farewell photo</p>
- </div>
- <p>
- Yúyo tihta atalantëa wen nu. Lau nú engë rotelë, telpë ananta ré llo. San ré yávë ohtatyaro. Vén sú telpë yanen laira. Mel ehtë teren tanga nu. Hwarma tareldar at ëar, ep man norna carcassë.
- </p>
- <div class="wp-caption">
- <img alt="This is alt text for the image" src="http://placehold.it/250x250">
- <p class="wp-caption-text">Guests and staff join for a farewell photo</p>
- </div>
- <p>
- Yúyo tihta atalantëa wen nu. Lau nú engë rotelë, telpë ananta ré llo. San ré yávë ohtatyaro. Vén sú telpë yanen laira. Mel ehtë teren tanga nu. Hwarma tareldar at ëar, ep man norna carcassë.
- </p>
-</div>
-
- <br><a name="images">images</a>
-<div id="test-images" class="row">
- <div class="alignright">
- <img alt="This is alt text for the image" src="http://placehold.it/250x250">
- </div>
- <p>
- Yúyo tihta atalantëa wen nu. Lau nú engë rotelë, telpë ananta ré llo. San ré yávë ohtatyaro. Vén sú telpë yanen laira. Mel ehtë teren tanga nu. Hwarma tareldar at ëar, ep man norna carcassë.
- </p>
- <hr>
- <div class="alignleft">
- <img alt="This is alt text for the image" src="http://placehold.it/250x250">
- </div>
- <p>
- Yúyo tihta atalantëa wen nu. Lau nú engë rotelë, telpë ananta ré llo. San ré yávë ohtatyaro. Vén sú telpë yanen laira. Mel ehtë teren tanga nu. Hwarma tareldar at ëar, ep man norna carcassë.
- </p>
- <hr>
- <div class="aligncenter">
- <img alt="This is alt text for the image" src="http://placehold.it/250x250">
- </div>
- <p>
- Yúyo tihta atalantëa wen nu. Lau nú engë rotelë, telpë ananta ré llo. San ré yávë ohtatyaro. Vén sú telpë yanen laira. Mel ehtë teren tanga nu. Hwarma tareldar at ëar, ep man norna carcassë.
- </p>
- <hr>
- <div class="">
- <img alt="This is alt text for the image" src="http://placehold.it/250x250">
- </div>
- <p>
- Yúyo tihta atalantëa wen nu. Lau nú engë rotelë, telpë ananta ré llo. San ré yávë ohtatyaro. Vén sú telpë yanen laira. Mel ehtë teren tanga nu. Hwarma tareldar at ëar, ep man norna carcassë.
- </p>
-</div>
-
- <br><a name="test-header-fonts">test-header-fonts</a>
-<div id="test-header-fonts" class="row">
- <p> this is a paragraph for reference. Be sure to keep an eye on the line-height below</p>
- <h1>This is a H1 element and should be large, prominent, and sparse, likely used only once on a page at the top.</h1>
- <p> this is a paragraph for reference.</p>
- <h2>This is a H2 element and should be prominent, likely used as headers for paragraphs.</h2>
- <p> this is a paragraph for reference.</p>
- <h3>This is a h3 element and should stand out, may be used as headers for paragraphs or drawing attention to certain elements</h3>
- <p> this is a paragraph for reference.</p>
- <h4>This is a h4 element and will likely not be used or be the same size as the surrounding P elements.</h4>
- <p> this is a paragraph for reference.</p>
- <h5>This is a h5 element and will likely not be used or be the same size as the surrounding P elements.</h5>
- <p> this is a paragraph for reference.</p>
-</div>
-
- <br><a name="test-lists">test-lists</a>
-<div id="test-lists" class="row">
- UL, bulleted
- <ul>
- <li>content</li>
- <li>content</li>
- <li>content</li>
- <li>content</li>
- <li>content</li>
- <li>content</li>
- <li>
- oversized content oversized content oversized content oversized content oversized content oversized content oversized content oversized content oversized content oversized content oversized content oversized contented
- </li>
- </ul>
- <br>
- OL, numbered
- <ol>
- <li>content</li>
- <li>content</li>
- <li>content</li>
- <li>content</li>
- <li>content</li>
- <li>content</li>
- <li>
- oversized content oversized content oversized content oversized content oversized content oversized content oversized content oversized content oversized content oversized content oversized content oversized contented
- </li>
- </ol>
-</div>
-
- <br><a name="test-table">test-table</a>
-<div id="test-table" class="row">
- <table>
- <thead>
- <tr>
- <td>head data0,0</td>
- <td>head data0,1</td>
- <td>head data0,2</td>
- <td>head data0,3</td>
- </tr>
- </thead>
- <tbody>
- <tr>
- <td>body data1,0</td>
- <td>body data1,1</td>
- <td>body data1,2</td>
- <td>body data1,3</td>
- </tr>
- <tr>
- <td>body data2,0</td>
- <td>body data2,1</td>
- <td>body data2,2</td>
- <td>body data2,3</td>
- </tr>
- </tbody>
- </table>
-</div>
-
- <br><a name="ninja-form">ninja-form</a>
-<div id="ninja-form" class="row">
- Insert ninja form here.
-</div>
-
- <br><a name="image-gallery">image-gallery</a>
- <h2> below momentarily won't work, nextgen might not use shortcodes anymore</h2>
-<div id="image-gallery" class="row">
- <?php do_shortcode('[ngg_images gallery_ids="23" template=glmphotos display_type="photocrati-nextgen_basic_slideshow"]');?>
- <?php do_shortcode('[nggallery gallery_ids="1" template=glmphotos display_type="photocrati-nextgen_basic_slideshow"]');?>
-</div>
-
- <br><a name="video-gallery">video-gallery</a>
-<div id="video-gallery" class="row">
- <h2>this will only work with nextgen custom fields plugin installed</h2>
- <h2>but below won't work at all at the moment</h2>
-
- <?php do_shortcode('[ngg_images gallery_ids="24" template=glmphotos display_type="photocrati-nextgen_basic_slideshow"]');?>
- <?php do_shortcode('[nggallery id=24 template="glmvideos" display_type="photocrati-nextgen_basic_slideshow"]');?>
-</div>
-
- <br><a name="event-calendar">event-calendar</a>
-<div id="event-calendar" class="row">
- <h2>this will only work with ai1ec time.ly event calendar plugin installed</h2>
- <?php do_shortcode('[ai1ec view="agenda" events_limit="3"]');?>
- <?php do_shortcode('[ai1ec view="stream" events_limit="3"]');?>
-</div>
-
- <br><a name="footer">footer</a>
-<footer>
- Example footer.
-</footer>
-
- <br><a name="address">address</a>
-<div id="address">
- <span>Business Name</span>
- <span class="bullet"> • </span>
- <span>123 Lane Street, P.O. Box 321</span>
- <span class="bullet"> • </span>
- <span>Village City, MI 49586</span>
- <span class="bullet"> • </span>
- <span>231-123-1231</span>
- <span class="bullet"></span>
- <span><a href="<?php echo home_url();?>/contact-us">Contact Us</a></span>
-</div>
-
- <br><a name="copyright">copyright</a>
-<div id="copyright" class="row">
- <span>© <?php echo date('Y');?> </span>
- <span class="bullet"> • </span>
- <span> All Rights Reserved.</span>
- <span class="bullet"> • </span>
- <span> Produced by <a target="_blank" href="http://www.gaslightmedia.com">Gaslight Media</a></span>
-</div>
\ No newline at end of file
+++ /dev/null
-<aside class="left-off-canvas-menu hide-for-large-up">
- <?php glm_theme_mobile_off_canvas(); ?>
- <?php get_template_part('parts/search');?>
- <?php get_template_part('parts/client-info-offcanvas');?>
-</aside>
-<!--
-<aside class="right-off-canvas-menu">
-
-</aside>-->
<form role="search" method="get" class="searchform" action="<?php echo home_url('/'); ?>">
<input class="search-input" type="text" placeholder="Search" value="" name="s">
- <input class="search-button button" type="submit" value="" name="submit">
+ <input class="search-button button" type="submit" value="Search" name="submit">
</form>
\ No newline at end of file
+++ /dev/null
-<nav class="top-bar text-center show-for-large-up" data-topbar role="navigation">
- <section class="top-bar-section">
- <?php glm_theme_top_bar(); ?>
- </section>
-</nav>
-<nav class="tab-bar show-for-medium-down">
- <section class="left-small">
- <a class="left-off-canvas-toggle menu-icon" href="#"><span>Menu</span></a>
- </section>
-</nav>