Update font awesome and jquery, add subresource integrity see #23

This commit is contained in:
Fabian Weisshaar 2016-04-13 09:48:06 +02:00
parent d3451be2ea
commit bca9aaf296

View File

@ -10,15 +10,15 @@
<title>{% block title %}{{ WWW_HOST }}{% endblock %}</title> <title>{% block title %}{{ WWW_HOST }}{% endblock %}</title>
<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet"> <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css" rel="stylesheet"> <link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.1/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-hQpvDQiCJaD2H465dQfA717v7lu5qHWtDbWNPvaTJ0ID5xnPUlVXnKzq7b8YUkbN" crossorigin="anonymous">
<link href="{% static 'css/nsupdate.css' %}" rel="stylesheet"> <link href="{% static 'css/nsupdate.css' %}" rel="stylesheet">
<link rel="icon" type="image/png" href="{% static 'favicon.png' %}" /> <link rel="icon" type="image/png" href="{% static 'favicon.png' %}" />
<!-- note: keep jQuery and bootstrap js here, <!-- note: keep jQuery and bootstrap js here,
stuff in the include / block right below might depend on it! stuff in the include / block right below might depend on it!
--> -->
<script src="//code.jquery.com/jquery-1.11.3.min.js"></script> <script src="https://code.jquery.com/jquery-1.12.3.min.js" integrity="sha256-aaODHAgvwQW1bFOGXMeX+pC4PZIPsvn2h1sArYOhgXQ=" crossorigin="anonymous"></script>
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>
{% include "includes/base_head.html" %} {% include "includes/base_head.html" %}
{% block html_head %}{% endblock %} {% block html_head %}{% endblock %}
</head> </head>