Upadate email page
authorSteve Sutton <steve@gaslightmedia.com>
Mon, 24 Nov 2014 16:30:50 +0000 (11:30 -0500)
committerSteve Sutton <steve@gaslightmedia.com>
Mon, 24 Nov 2014 16:30:50 +0000 (11:30 -0500)
bring from old html

assets/arrow.gif [new file with mode: 0644]
assets/arrowOn.gif [new file with mode: 0644]
assets/logo.gif [new file with mode: 0644]
assets/modus.jpg [new file with mode: 0644]
assets/newwebmail.jpg [new file with mode: 0644]
assets/webmail1.gif [new file with mode: 0644]
assets/webmail2.gif [new file with mode: 0644]
page-1296.php [new file with mode: 0644]

diff --git a/assets/arrow.gif b/assets/arrow.gif
new file mode 100644 (file)
index 0000000..c903c0c
Binary files /dev/null and b/assets/arrow.gif differ
diff --git a/assets/arrowOn.gif b/assets/arrowOn.gif
new file mode 100644 (file)
index 0000000..10426b5
Binary files /dev/null and b/assets/arrowOn.gif differ
diff --git a/assets/logo.gif b/assets/logo.gif
new file mode 100644 (file)
index 0000000..403fbae
Binary files /dev/null and b/assets/logo.gif differ
diff --git a/assets/modus.jpg b/assets/modus.jpg
new file mode 100644 (file)
index 0000000..c935aeb
Binary files /dev/null and b/assets/modus.jpg differ
diff --git a/assets/newwebmail.jpg b/assets/newwebmail.jpg
new file mode 100644 (file)
index 0000000..05c1d62
Binary files /dev/null and b/assets/newwebmail.jpg differ
diff --git a/assets/webmail1.gif b/assets/webmail1.gif
new file mode 100644 (file)
index 0000000..85a3aac
Binary files /dev/null and b/assets/webmail1.gif differ
diff --git a/assets/webmail2.gif b/assets/webmail2.gif
new file mode 100644 (file)
index 0000000..c84dfc7
Binary files /dev/null and b/assets/webmail2.gif differ
diff --git a/page-1296.php b/page-1296.php
new file mode 100644 (file)
index 0000000..929dcff
--- /dev/null
@@ -0,0 +1,99 @@
+<?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 &quot;Username:&quot; 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(); ?>