Skip to content

Commit ddc27d0

Browse files
authored
Load Google fonts with the same protocol
This change makes sure the site loads fine when loading over https. If we do not, the site will report warnings about mixed contents and thus is not fully secure.
1 parent b130c28 commit ddc27d0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: index.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66
<meta charset="UTF-8" />
77
<meta name="viewport" content="width=device-width, initial-scale=1">
88
<title>{{ site.title }}</title>
9-
<meta name="keywords" content="{{ site.keywords }}">
10-
<meta name="description" content="{{ site.description }}">
9+
<meta name="keywords" content="{{ site.keywords }}">
10+
<meta name="description" content="{{ site.description }}">
1111
<link rel="stylesheet" href="combo.css">
12-
<link href='http://fonts.googleapis.com/css?family=Raleway:400,300,700' rel='stylesheet' type='text/css'>
12+
<link href='//fonts.googleapis.com/css?family=Raleway:400,300,700' rel='stylesheet' type='text/css'>
1313
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css">
1414
{% if site.favicon %}<link rel="shortcut icon" href="{{ site.favicon }}" type="image/x-icon">{% endif %}
1515
{% if site.touch_icon %}<link rel="apple-touch-icon" href="{{ site.touch_icon }}">{% endif %}

0 commit comments

Comments
 (0)