--- /dev/null
+<?php get_header(); ?>
+
+<div class="row">
+ <?php // get_sidebar('left'); ?>
+ <?php
+ if (has_post_thumbnail()) {
+ $image_data = wp_get_attachment_image_src(get_post_thumbnail_id($post->ID),
+ "full");
+ echo '<img class="small-12 columns" style="display: block; width: 100%; position: relative; padding: 0;" src="' . $image_data[0] . '";>';
+ }
+ ?>
+ <div id="main" class="small-12 columns" role="main">
+ <style>
+ #column1{
+ width: 318px;
+ float: left;
+ position: relative;
+ background: #fff;
+ }
+
+ #column1 {
+ margin: 10px 20px 10px 40px;
+ display: inline;
+ }
+
+ #column1 h2 {
+ background-color: #1d58a5;
+ background-color: #3B74BF;
+ color: white;
+ font-size: 1.5em;
+ margin: 0 0 10px 0;
+ padding: 10px;
+ position: relative;
+ }
+ #column1 a {
+ color: black;
+ cursor: hand;
+ cursor: pointer;
+ text-decoration: none;
+ display: block;
+ }
+ /* Header :hover */
+ #column1 a:hover h2,
+ #column2 a:hover h2 {
+ background-color: #E25D21;
+ background-color: #FF854F;
+ }
+
+ /* Screenshot centering */
+ #column1 img {
+ margin: 0 auto;
+ }
+ /* Coulmn paragraphs */
+ #column1 p,
+ #column2 p {
+ margin: 1em 20px;
+ }
+
+ .c-off {border: 1px solid #FF854F;}
+ .c-on {border: 1px solid #FF854F;}
+ #column1 img {border: 0; display: block;}
+ </style>
+ <div id="top">
+ <a href="http://www.gaslightmedia.com"><img src="<?php echo get_stylesheet_directory_uri(); ?>/assets/logo.gif" width="284" height="89" alt="logo (5K)" title="Gaslight Media" border="0"></a>
+ </div>
+ <div id="column1" class="c-off" onMouseover="this.className = 'c-on';
+ document.getElementById('arrow2').src = '<?php echo get_stylesheet_directory_uri(); ?>/assets/arrowOn.gif';" onMouseout="this.className = 'c-off';
+ document.getElementById('arrow2').src = '<?php echo get_stylesheet_directory_uri(); ?>/assets/arrow.gif';">
+ <a href="http://webmail.gaslightmedia.com" title="New Gaslight Media E-Mail">
+ <h2>New Gaslight Media E-Mail</h2>
+ <p>Click here and you will see the new Webmail login page. Please enter your complete E-Mail address in the "Username:" field.</p>
+ <img src="<?php echo get_stylesheet_directory_uri(); ?>/assets/arrow.gif" width="50" height="56" alt="" title="New Gaslight Media E-Mail" id="arrow2">
+ <img src="<?php echo get_stylesheet_directory_uri(); ?>/assets/newwebmail.jpg" width="272" height="145" alt="newwebmail (6K)" title="New Gaslight Media E-Mail">
+ </a>
+ </div><!-- /#column1 -->
+
+ <?php do_action('foundationPress_before_content'); ?>
+<?php while (have_posts()) : the_post(); ?>
+ <article <?php post_class() ?> id="post-<?php the_ID(); ?>">
+ <header>
+ <h1 class="entry-title"><?php the_title(); ?></h1>
+ </header>
+ <?php do_action('foundationPress_page_before_entry_content'); ?>
+ <div class="entry-content">
+ <?php the_content(); ?>
+ </div>
+ <footer>
+ <?php wp_link_pages(array('before' => '<nav id="page-nav"><p>' . __('Pages:',
+ 'FoundationPress'), 'after' => '</p></nav>')); ?>
+ <p><?php the_tags(); ?></p>
+ </footer>
+ </article>
+ <?php endwhile; ?>
+
+<?php do_action('foundationPress_after_content'); ?>
+
+ </div>
+</div>
+<?php get_footer(); ?>