inherit protocol (http/https) for stylesheet load

Some browsers (e.g. latest Chrome) won't load stylesheets over http if the site is loaded over https.
This commit is contained in:
Donny Winston 2016-09-08 10:29:01 -07:00 committed by GitHub
parent c22c902de6
commit 20a24ff1ec

View file

@ -4,7 +4,7 @@
<head> <head>
<title>Send Password</title> <title>Send Password</title>
<link href="{{ config.STATIC_URL }}/bootstrap/css/bootstrap.min.css" rel="stylesheet"> <link href="{{ config.STATIC_URL }}/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="http://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.6.3/css/font-awesome.min.css" rel="stylesheet"> <link href="//cdnjs.cloudflare.com/ajax/libs/font-awesome/4.6.3/css/font-awesome.min.css" rel="stylesheet">
<link href="{{ config.STATIC_URL }}/snappass/css/custom.css" rel="stylesheet"> <link href="{{ config.STATIC_URL }}/snappass/css/custom.css" rel="stylesheet">
</head> </head>
<body> <body>