forked from github/pelican
Load external resources via HTTPS when available
This replaces all `http://` and `//:` links with `https:`. The protocol- relative URL scheme is now deemed to be an anti-pattern. There are security advantages to using HTTPS, and there are no significant performance concerns. In short, if the asset we need is available via HTTPS, then that asset should always be loaded via HTTPS. Fixes #1736
This commit is contained in:
parent
389d0cec52
commit
940eb76b7f
111 changed files with 256 additions and 256 deletions
|
|
@ -12,7 +12,7 @@
|
|||
@import url("reset.css");
|
||||
@import url("pygment.css");
|
||||
@import url("typogrify.css");
|
||||
@import url(//fonts.googleapis.com/css?family=Yanone+Kaffeesatz&subset=latin);
|
||||
@import url(https://fonts.googleapis.com/css?family=Yanone+Kaffeesatz&subset=latin);
|
||||
|
||||
/***** Global *****/
|
||||
/* Body */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue