|
1 | 1 | {% load static i18n %}<!DOCTYPE html> |
2 | 2 | <html lang="en"> |
3 | 3 | <head> |
| 4 | + <!-- Allows you to inject head elements here --> |
| 5 | + {% block head %} |
| 6 | + |
4 | 7 | <meta charset="utf-8"> |
5 | 8 | <meta http-equiv="x-ua-compatible" content="ie=edge"> |
6 | | - <title>{% block title %}Exome Slicer{% endblock title %}</title> |
| 9 | + <title>{% block title %}Nexus{% endblock title %}</title> |
7 | 10 | <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
8 | | - <meta name="description" content=""> |
9 | | - <meta name="author" content=""> |
| 11 | + <meta name="description" content="Nexus - DGD Clinical Genome Interpretation Platform"> |
| 12 | + <meta name="author" content="Michael A. Gonzalez"> |
10 | 13 |
|
11 | 14 | <!-- HTML5 shim, for IE6-8 support of HTML5 elements --> |
12 | 15 | <!--[if lt IE 9]> |
13 | 16 | <script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js"></script> |
14 | 17 | <![endif]--> |
15 | 18 |
|
16 | | - <link rel="icon" href="{% static 'images/favicons/favicon.ico' %}"> |
17 | | - |
18 | 19 | {% block css %} |
19 | | - |
20 | | - <!-- Latest compiled and minified Bootstrap 4.1.1 CSS --> |
21 | | - <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" integrity="sha384-WskhaSGFgHYWDcbwN70/dfYBj47jz9qbsMId/iRN3ewGhXQFZCSftd1LZCfmhktB" crossorigin="anonymous"> |
22 | | - |
| 20 | + |
| 21 | + <!-- Latest compiled and minified Bootstrap 4 beta CSS --> |
23 | 22 |
|
24 | 23 | <!-- Your stuff: Third-party CSS libraries go here --> |
25 | | - |
26 | | - <!-- This file stores project-specific CSS --> |
27 | | - |
28 | | - <link href="{% static 'css/project.css' %}" rel="stylesheet"> |
29 | | - |
30 | | - |
31 | | - {% endblock %} |
32 | 24 |
|
| 25 | + {% endblock css %} |
| 26 | + |
| 27 | + {% endblock head %} |
33 | 28 | </head> |
34 | 29 |
|
35 | 30 | <body> |
36 | | - |
37 | | - <div class="mb-1"> |
38 | | - <nav class="navbar navbar-expand-md navbar-light bg-light"> |
39 | | - <button class="navbar-toggler navbar-toggler-right" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation"> |
40 | | - <span class="navbar-toggler-icon"></span> |
41 | | - </button> |
42 | | - <a class="navbar-brand" href="{% url 'home' %}">Exome Slicer</a> |
43 | | - |
44 | | - <div class="collapse navbar-collapse" id="navbarSupportedContent"> |
45 | | - <ul class="navbar-nav mr-auto"> |
46 | | - <li class="nav-item active"> |
47 | | - <a class="nav-link" href="{% url 'home' %}">Home <span class="sr-only">(current)</span></a> |
48 | | - </li> |
49 | | - <li class="nav-item"> |
50 | | - <a class="nav-link" href="{% url 'about' %}">About</a> |
51 | | - </li> |
52 | | - {% if request.user.is_authenticated %} |
53 | | - <li class="nav-item"> |
54 | | - {# URL provided by django-allauth/account/urls.py #} |
55 | | - <a class="nav-link" href="{% url 'users:detail' request.user.username %}">{% trans "My Profile" %}</a> |
56 | | - </li> |
57 | | - <li class="nav-item"> |
58 | | - {# URL provided by django-allauth/account/urls.py #} |
59 | | - <a class="nav-link" href="{% url 'account_logout' %}">{% trans "Sign Out" %}</a> |
60 | | - </li> |
61 | | - {% else %} |
62 | | - <li class="nav-item"> |
63 | | - {# URL provided by django-allauth/account/urls.py #} |
64 | | - <a id="sign-up-link" class="nav-link" href="{% url 'account_signup' %}">{% trans "Sign Up" %}</a> |
65 | | - </li> |
66 | | - <li class="nav-item"> |
67 | | - {# URL provided by django-allauth/account/urls.py #} |
68 | | - <a id="log-in-link" class="nav-link" href="{% url 'account_login' %}">{% trans "Sign In" %}</a> |
69 | | - </li> |
70 | | - {% endif %} |
71 | | - </ul> |
72 | | - </div> |
73 | | - </nav> |
74 | | - |
75 | | - </div> |
76 | | - |
77 | | - <div class="container"> |
78 | | - |
79 | | - {% if messages %} |
80 | | - {% for message in messages %} |
81 | | - <div class="alert {% if message.tags %}alert-{{ message.tags }}{% endif %}">{{ message }}</div> |
82 | | - {% endfor %} |
83 | | - {% endif %} |
84 | | - |
85 | | - {% block content %} |
86 | | - <p>Use this document as a way to quick start any new project.</p> |
87 | | - {% endblock content %} |
88 | | - |
89 | | - </div> <!-- /container --> |
90 | | - |
91 | | - {% block modal %}{% endblock modal %} |
| 31 | + <!-- Allows you to inject body content here --> |
| 32 | + {% block body %} |
| 33 | + {% endblock body %} |
92 | 34 |
|
93 | 35 | <!-- Le javascript |
94 | 36 | ================================================== --> |
95 | 37 | <!-- Placed at the end of the document so the pages load faster --> |
96 | 38 | {% block javascript %} |
97 | | - |
98 | | - <!-- Required by Bootstrap v4.1.1 --> |
99 | | - <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script> |
100 | | - <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script> |
101 | | - <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js" integrity="sha384-smHYKdLADwkXOn1EmN1qk/HfnUcbVRZyYmZ4qpPea6sjB/pTJ0euyQp0Mk8ck+5T" crossorigin="anonymous"></script> |
102 | | - |
103 | 39 | <!-- Your stuff: Third-party javascript libraries go here --> |
104 | | - |
105 | | - |
106 | | - <!-- place project specific Javascript in this file --> |
107 | | - |
108 | | - <script src="{% static 'js/project.js' %}"></script> |
109 | | - |
110 | | - |
111 | 40 | {% endblock javascript %} |
| 41 | + |
| 42 | + <!-- Google Analytics goes here --> |
| 43 | + {% block google_analytics %} |
| 44 | + {% endblock google_analytics %} |
112 | 45 | </body> |
113 | 46 | </html> |
114 | | - |
0 commit comments