|
1 | | -<!DOCTYPE html> {% load ietf_filters %} |
| 1 | +<!DOCTYPE html> {% load ietf_filters staticfiles %} |
2 | 2 | {# Copyright The IETF Trust 2015, All Rights Reserved #} |
3 | 3 | {% load origin %}{% origin %} |
4 | 4 | <html lang="en"> |
|
8 | 8 | <title>{% block title %}No title{% endblock %}</title> |
9 | 9 | <meta name="viewport" content="width=device-width, initial-scale=1"> |
10 | 10 |
|
11 | | - <link href="/fonts/PTMono/stylesheet.css" rel='stylesheet' type='text/css'> |
12 | | - <link href="/fonts/PTSans/stylesheet.css" rel='stylesheet' type='text/css'> |
13 | | - <link href="/fonts/PTSerif/stylesheet.css" rel='stylesheet' type='text/css'> |
| 11 | + <link href="{% static 'ptmono/stylesheet.css' %}" rel='stylesheet' type='text/css'> |
| 12 | + <link href="{% static 'ptsans/stylesheet.css' %}" rel='stylesheet' type='text/css'> |
| 13 | + <link href="{% static 'ptserif/stylesheet.css' %}" rel='stylesheet' type='text/css'> |
14 | 14 | {% comment %} |
15 | 15 | <!-- Halloween |
16 | 16 | <link href='https://fonts.googleapis.com/css?family=IM+Fell+English+SC|IM+Fell+DW+Pica:400,400italic|Nova+Mono|IM+Fell+English:400,400italic&subset=latin-ext,latin' rel='stylesheet' type='text/css'> |
17 | 17 | --> |
18 | 18 | {% endcomment %} |
19 | 19 |
|
| 20 | + <link rel="stylesheet" href="{% static 'font-awesome/css/font-awesome.min.css' %}"> |
20 | 21 | <link rel="stylesheet" href="/css/bootstrap.min.css"> |
21 | 22 | <link rel="stylesheet" href="/css/bootstrap-theme.min.css"> |
22 | | - <link rel="stylesheet" href="/css/font-awesome.min.css"> |
23 | 23 | <link rel="stylesheet" href="/css/ietf.css"> |
24 | 24 | <style> |
25 | 25 | {% block morecss %}{% endblock %} |
|
148 | 148 | </footer> |
149 | 149 | {% include "debug.html" %} |
150 | 150 | </div> |
151 | | - <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script> |
152 | | - <script>window.jQuery || document.write('<script src="/js/lib/jquery-1.11.2.min.js"><\/script>')</script> |
| 151 | + <script src="{% static 'jquery/jquery.min.js' %}"></script> |
153 | 152 | {% comment %} |
154 | 153 | <!-- Remove the *-nojs attributes if we are running js. This depends on jQuery's removeClass(): --> |
155 | 154 | <!-- Do this as early as possible (after loading the page and jQuery) to avoid rendering changes --> |
156 | 155 | {% endcomment %} |
157 | 156 | <script>$(".visible-nojs").removeClass("visible-nojs");</script> |
158 | 157 | <script>$(".hidden-nojs").removeClass("hidden-nojs");</script> |
159 | | - <script src="/js/lib/jquery.cookie.min.js"></script> |
160 | | - <script src="/js/lib/bootstrap.min.js"></script> |
| 158 | + <script src="{% static 'jquery.cookie/jquery.cookie.js' %}"></script> |
| 159 | + <script src="{% static 'bootstrap/js/bootstrap.min.js' %}"></script> |
161 | 160 | <script src="/js/ietf.js"></script> |
162 | 161 | {% block js %}{% endblock %} |
163 | 162 | </body> |
|
0 commit comments