Skip to content

Commit

Permalink
Changed http to https
Browse files Browse the repository at this point in the history
  • Loading branch information
James Coggan committed Jan 25, 2018
1 parent 230a916 commit dac43c1
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ email: [email protected]
description: >
Android craftsmanship passionate for IoT
baseurl: ""
url: http://jamescoggan.com
url: https://jamescoggan.com
logo: "/assets/img/logo.png"

paginate: 10
Expand All @@ -15,4 +15,4 @@ sass:

plugins:
- jekyll-gist
- jekyll-paginate
- jekyll-paginate
4 changes: 2 additions & 2 deletions _includes/general/blog/head.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

<head>
<meta charset="UTF-8">
<link rel="schema.DC" href="http://purl.org/dc/elements/1.1/">
<link rel="schema.DC" href="https://purl.org/dc/elements/1.1/">

<title>{% if page.title %}{{ page.title | escape }}{% else %}{{ site.title | escape }}{% endif %}</title>
<meta name="DC.title" content="{% if page.title %}{{ page.title | escape }}{% else %}{{ site.title | escape }}{% endif %}">
Expand Down Expand Up @@ -48,7 +48,7 @@
<link rel="stylesheet" href="{{ "/assets/css/blog/benchmark-mail.css" | prepend: site.baseurl }}">
<link rel="stylesheet" href="{{ "/assets/css/blog/main.css" | prepend: site.baseurl }}">
<link rel="stylesheet" href="{{ "/assets/css/font-awesome.min.css" | prepend: site.baseurl }}">
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=PT+Sans:400,400italic,700|Abril+Fatface">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=PT+Sans:400,400italic,700|Abril+Fatface">

<meta name="msapplication-TileImage" content="{{ "/assets/img/icon-144.png" | prepend: site.baseurl }}">
<link rel="apple-touch-icon" href="{{ "/assets/img/icon-152.png" | prepend: site.baseurl }}">
Expand Down
2 changes: 1 addition & 1 deletion _includes/general/head.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

<head>
<meta charset="UTF-8">
<link rel="schema.DC" href="http://purl.org/dc/elements/1.1/">
<link rel="schema.DC" href="https://purl.org/dc/elements/1.1/">

<title>{% if page.title %}{{ page.title | escape }}{% else %}{{ site.title | escape }}{% endif %}</title>
<meta name="DC.title" content="{% if page.title %}{{ page.title | escape }}{% else %}{{ site.title | escape }}{% endif %}">
Expand Down
4 changes: 2 additions & 2 deletions assets/css/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ $a_26: 26px;
$author_size: 11px;

// @import url("@import url(https://fonts.googleapis.com/css?family=Alegreya:400,700,400italic,700italic");
@import url("http://fonts.googleapis.com/css?family=PT+Sans:400,400italic,700|Abril+Fatface");
@import url("https://fonts.googleapis.com/css?family=PT+Sans:400,400italic,700|Abril+Fatface");
@import url("https://fonts.googleapis.com/css?family=Lato:300");
// Import partials from `sass_dir` (defaults to `_sass`)
@import
Expand All @@ -47,4 +47,4 @@ $author_size: 11px;
"profile-about",
"profile-quote",
"blog-posts"
;
;
6 changes: 3 additions & 3 deletions assets/fonts/Fontawesome/fontawesome-webfont.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion feed.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
layout: null
---
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<rss version="2.0" xmlns:atom="https://www.w3.org/2005/Atom">
<channel>
<title>{{ site.title | xml_escape }}</title>
<description>{{ site.description | xml_escape }}</description>
Expand Down
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
---
---

<html xmlns="http://www.w3.org/1999/xhtml">
<html xmlns="https://www.w3.org/1999/xhtml">
<head>
<title>{{site.title}}</title>
<meta http-equiv="refresh" content="0;URL='{{ site.url | prepend: site.baseurl }}/en/'" />
</head>
<body>
<p>This page has moved to a <a href="{{ site.url | prepend: site.baseurl }}/en/">{{ site.url | prepend: site.baseurl }}/en/</a>.</p>
</body>
</html>
</html>

0 comments on commit dac43c1

Please sign in to comment.