Skip to content

Commit

Permalink
Merge pull request #10 from unt-libraries/0.9-use-https-assets
Browse files Browse the repository at this point in the history
Use https assets to avoid mixed content problems
  • Loading branch information
ldko committed May 2, 2016
2 parents e91806d + 80b4a37 commit 27b2e06
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions templates/invite/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,17 @@
<title>{% block title %}{% endblock %}</title>
<style type="text/css"> body { padding-top: 60px; }</style>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/css/bootstrap-combined.min.css">
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.min.css">
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript" src="http://netdna.bootstrapcdn.com/twitter-bootstrap/latest/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/css/bootstrap-combined.min.css">
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.min.css">
<script type="text/javascript" src="https://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript" src="https://netdna.bootstrapcdn.com/twitter-bootstrap/latest/js/bootstrap.min.js"></script>

<link
rel="stylesheet"
href="http://code.jquery.com/ui/1.9.2/themes/base/jquery-ui.css"
href="https://code.jquery.com/ui/1.9.2/themes/base/jquery-ui.css"
type="text/css"
media="all">
<script src="http://code.jquery.com/ui/1.9.2/jquery-ui.js" type="text/javascript"></script>
<script src="https://code.jquery.com/ui/1.9.2/jquery-ui.js" type="text/javascript"></script>

{% block head-extra %}{% endblock %}
</head>
Expand Down

0 comments on commit 27b2e06

Please sign in to comment.