diff options
author | Steve Francia | 2015-05-01 17:10:43 -0400 |
---|---|---|
committer | Steve Francia | 2015-05-01 17:10:43 -0400 |
commit | d89bc2905e4c9d0ea07cef749dcd9b7dba6d86f4 (patch) | |
tree | 690831fe1240457af6d725a7952e8d8c4a71e179 /layouts/partials | |
parent | 717a8f01338e331b1b2cff64d55f0e6b0192d91e (diff) | |
parent | 4ce7ab945a525d94b59d1fbe2929a88b15b30430 (diff) | |
download | hyde-d89bc2905e4c9d0ea07cef749dcd9b7dba6d86f4.tar.lz hyde-d89bc2905e4c9d0ea07cef749dcd9b7dba6d86f4.tar.zst hyde-d89bc2905e4c9d0ea07cef749dcd9b7dba6d86f4.zip |
Merge pull request #9 from giodamelio/master
Fetch Google fonts over https to avoid mixed contents warnings
Diffstat (limited to 'layouts/partials')
-rw-r--r-- | layouts/partials/head.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/layouts/partials/head.html b/layouts/partials/head.html index 4ddf0fa..a9f9401 100644 --- a/layouts/partials/head.html +++ b/layouts/partials/head.html @@ -13,7 +13,7 @@ <link rel="stylesheet" href="{{ .Site.BaseUrl }}/css/poole.css"> <link rel="stylesheet" href="{{ .Site.BaseUrl }}/css/syntax.css"> <link rel="stylesheet" href="{{ .Site.BaseUrl }}/css/hyde.css"> - <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"> <!-- Icons --> <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/apple-touch-icon-144-precomposed.png"> |