Making links use // instead of http to allow for ssl security
authorLaury GvR <laury@gaslightmedia.com>
Tue, 6 Jun 2017 21:04:59 +0000 (17:04 -0400)
committerLaury GvR <laury@gaslightmedia.com>
Tue, 6 Jun 2017 21:04:59 +0000 (17:04 -0400)
index.php
parts/header-meta.php

index 1f2b075..f0e476f 100644 (file)
--- a/index.php
+++ b/index.php
@@ -7,28 +7,28 @@
             <div class="inner-wrap">
                 <div id="page-wrapper">
                     <?php
-                    include "sections/header.php";                     
-                    include "sections/off-canvas.php"; 
-                    if (is_front_page()) { 
-                        include "sections/front-page.php"; 
-                    } 
-                    if (is_home()) { 
+                    include "sections/header.php";
+                    include "sections/off-canvas.php";
+                    if (is_front_page()) {
+                        include "sections/front-page.php";
+                    }
+                    if (is_home()) {
                         include "sections/blog-home.php";
-                    } 
-                    if (is_archive()) { 
+                    }
+                    if (is_archive()) {
                         include "sections/blog-archive.php";
-                    } 
+                    }
                     if (is_single()) {
                         include "sections/blog-single.php";
                     }
-                    if (is_search()) { 
+                    if (is_search()) {
                         include "sections/search.php";
                     }
-                    if (is_page() && !is_front_page()) { 
-                        include "sections/interior-page.php"; 
+                    if (is_page() && !is_front_page()) {
+                        include "sections/interior-page.php";
                     }
-                    include "sections/footer.php";  
-                    include "sections/copyright.php";  
+                    include "sections/footer.php";
+                    include "sections/copyright.php";
                     ?>
                     </div><!--/#page-wrapper-->
             <a class="exit-off-canvas"></a>
@@ -36,7 +36,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="//w.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>
\ No newline at end of file
index 5c65121..daacc70 100644 (file)
@@ -4,7 +4,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() ; ?>/favicon.ico">
-    <link href="https://fonts.googleapis.com/css?family=Vollkorn:400,400i" rel="stylesheet"> 
-    <link href='http://fonts.googleapis.com/css?family=Open+Sans:400,400italic,700' rel='stylesheet' type='text/css'>
+    <link href="//fonts.googleapis.com/css?family=Vollkorn:400,400i" rel="stylesheet">
+    <link href='//fonts.googleapis.com/css?family=Open+Sans:400,400italic,700' rel='stylesheet' type='text/css'>
     <?php wp_head(); ?>
   </head>
\ No newline at end of file