Skip to content

Commit

Permalink
google fonts should always load on https (#4328)
Browse files Browse the repository at this point in the history
  • Loading branch information
Pomax authored Mar 10, 2020
1 parent 74fa27a commit a9c3fee
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions network-api/networkapi/templates/pages/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@

{% block stylesheets %}
<link rel="stylesheet" href="/_css/main.compiled.css">
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Nunito+Sans:400,300,700,300i">
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Zilla+Slab:300,400,600,700,300i">
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Open+Sans:400,700">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Nunito+Sans:400,300,700,300i">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Zilla+Slab:300,400,600,700,300i">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans:400,700">
{% endblock %}

{% block extended_head %}{% endblock %}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
<!-- our app's additional CSS -->
<link rel="stylesheet" href="/_css/main.compiled.css">
<link rel="stylesheet" href="{% static 'wagtailadmin/css/layouts/404-additionals.css' %}" />
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Nunito+Sans:400,600,300,700">
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Zilla+Slab:300,400">
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Open+Sans:400,700">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Nunito+Sans:400,600,300,700">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Zilla+Slab:300,400">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans:400,700">
{% endblock %}


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
{% block body_id %}youtube-regrets{% endblock %}

{% block extended_head %}
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Changa" rel="stylesheet">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Changa" rel="stylesheet">
{% endblock %}

{% block content %}
Expand Down

0 comments on commit a9c3fee

Please sign in to comment.