update http to https for font and sharethis.
authorSteve Sutton <steve@gaslightmedia.com>
Mon, 6 Feb 2017 20:44:29 +0000 (15:44 -0500)
committerSteve Sutton <steve@gaslightmedia.com>
Mon, 6 Feb 2017 20:44:29 +0000 (15:44 -0500)
This is for when or if site goes to https.

footer.php
header.php
index.php

index ffb166c..873cbbf 100644 (file)
@@ -21,7 +21,7 @@
       </div><!--End of off-canvas-->
   <?php wp_footer();?>
     <script charset="utf-8" type="text/javascript">var switchTo5x=true;</script>
-    <script charset="utf-8" type="text/javascript" src="http://w.sharethis.com/button/buttons.js"></script>
+    <script charset="utf-8" type="text/javascript" src="https://ws.sharethis.com/button/buttons.js"></script>
     <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>
index eae4320..3c8160d 100644 (file)
@@ -6,7 +6,7 @@
     <title><?php wp_title(); ?></title>
     <link rel="stylesheet" href="<?php echo get_stylesheet_directory_uri() ; ?>/css/app.css">
 <!--    <link rel="shortcut icon" href="<?php echo get_stylesheet_directory_uri() ; ?>/assets/favicon.ico?v=1">-->
-    <link href="https://fonts.googleapis.com/css?family=Lato:400,700" rel="stylesheet">
+    <link href="//fonts.googleapis.com/css?family=Lato:400,700" rel="stylesheet">
     <?php wp_head(); ?>
   </head>
       <body <?php body_class();?>>
index 4535cdc..ca375a4 100644 (file)
--- a/index.php
+++ b/index.php
@@ -1,47 +1,19 @@
 <?php get_header(); ?>
-                    <div class="main">
-                        <div class="row">    
-                            <div id="slideshow">
-                                <img src="assets/slid-rig.jpg">
-                                <div class="medium-4 columns show-for-medium-up" id="slide_descrip">
-                                    <p>Img description here.</p>
-                                </div>
-                            </div>
-                        </div>
-                        <div id="content-wrapper">    
-                            <div class="row">
-                                <div class="small-12 columns text-center Emer">
-                                    <h1>If this is an emergency, please call 9-1-1</h1>
-                                </div>
-                            </div>
-                             <div class="row">
-                                <div class="small-12 large-4 columns small-text-center large-text-left  blocks">
-                                    <img src="assets/licensed.jpg">
-                                    <h1>State Licensed</h1>
-                                    <p>Just 74 days after the Emmet County Board of Commissioners gave their approval for the County to assume EMS services, the state has put its stamp of approval on the operations as well.</p><a href="#">Read More...</a>
-                                </div>
-                                <div class="small-12 large-4 columns small-text-center large-text-left  blocks">
-                                    <img src="assets/m-119.jpg">
-                                    <h1>New M-119 Location</h1>
-                                    <p>Emmet County continues to move forward on its new facility to house the ambulances and related equipment currently being constructed on M-119, near Pleasantview Road.</p><a href="#">Read More...</a>
-                                </div>
-                                <div class="small-12 large-4 columns small-text-center large-text-left blocks">
-                                    <img src="assets/rig.jpg">
-                                    <h1>New Rig</h1>
-                                    <p>Progress is being made in Emmet County’s efforts to provide ambulance services in Northwest Michigan, with the arrival of one of several new ambulances Oct. 9 in Petoskey.</p><a href="#">Read More...</a>
-                                </div>
-                            </div>
-                            <div class="row">
-                                <div id="main-content" class="small-12 large-8 columns">
-                                    <h1>Title Here</h1>
-                                    <p>Doluptur sinis nihic teturitat id que prorro incturem dem volorit atiume ped mi, cusci rest voluptatium qui consedi odigeni musdae. Ipsa suntum quaecab il explia voluptam harum conet harupturit pratio que cum et litium lis sernatur sunt, ommolup tatiam hillam ratur? Acea verum in natet laut id moloremped et volupic iisqui ressin cus, venditia corum, con re sunt.<br><br>
-        Quias eos et porerciis in nienihi lligeni ssiminu sapicienet volut a amus di cullat pa sin re pre voluptas adicitibus peris cum anti idem eiusani moluptatium aria doloribus, cus.<br><br>
-        Abores eossumq uuntissum apienis doluptae quasit lam, nonseque nus exce rrum commoluptat quas volorempos quassu magnatium nonsect inverfe ratassint quaerro viderro renihicti apid esto blaciet eum quae ius magnihi lluptas que volupt quid ute porem.</p>
-                                </div>
-                                <div class="small-12 large-4 columns small-text-center large-text-left">
-                                    <h1>EMS Events</h1>
-                                    <img src="<?php echo get_template_directory_uri(); ?>/assets/calander.jpg">
-                                </div>
-                            </div>
-                        </div>
-<?php get_footer(); ?>                        
\ No newline at end of file
+    <main class="page-inside">
+        <div class="row">
+         <?php get_sidebar(); ?>
+            <div class="small-12 medium-8 large-6 columns">
+                <div class="row">
+                    <div class="small-12 columns">
+                        <?php get_template_part('parts/bread-crumbs');?>
+                        <?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;?>
+                    </div>
+                </div>
+            </div>
+            <?php get_template_part('parts/sidebar');?>
+        </div>
+<?php get_footer(); ?>