add nick
[laas.git] / src / templates / base / layout.html
1 {% load staticfiles %}
2 <!DOCTYPE html>
3 <html lang="en">
4
5 <head>
6
7     <meta charset="utf-8">
8     <meta http-equiv="X-UA-Compatible" content="IE=edge">
9     <meta name="viewport" content="width=device-width, initial-scale=1">
10     <meta name="description" content="">
11     <meta name="author" content="">
12
13     {% block head-title %}
14     <title>Anuket Laas {{ title }}</title>
15     {% endblock head-title %}
16
17     <!-- jQuery -->
18     <script src="{% static "node_modules/jquery/dist/jquery.min.js" %}"></script>
19
20     <!-- Bootstrap Core CSS -->
21     <link href="{% static "node_modules/bootstrap/dist/css/bootstrap.min.css" %}"
22           rel="stylesheet">
23
24     <!-- Custom Fonts -->
25     <link href="{% static "node_modules/@fortawesome/fontawesome-free/css/all.min.css" %}"
26           rel="stylesheet" type="text/css">
27
28     <link href="{% static "css/base.css" %}" rel="stylesheet">
29
30     <!-- Favicon -->
31     <link rel="shortcut icon" href="{% static 'favicon.ico' %}">
32
33     {% block extrahead %}
34     {% endblock extrahead %}
35
36     <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
37     <!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
38     <!--[if lt IE 9]>
39         <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
40         <script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
41     <![endif]-->
42 </head>
43
44 {% block extrastyle %}
45 {% endblock extrastyle %}
46
47 <body>
48 {% block basecontent %}
49 {% endblock basecontent %}
50
51 <!-- Popper.js -->
52 <script src="{% static "node_modules/popper.js/dist/umd/popper.min.js" %}"></script>
53 <!-- Bootstrap Core JavaScript -->
54 <script src="{% static "node_modules/bootstrap/dist/js/bootstrap.min.js" %}"></script>
55
56 {% block extrajs %}
57 {% endblock extrajs %}
58 </body>
59 </html>