-
Notifications
You must be signed in to change notification settings - Fork 1
/
includes.html
38 lines (37 loc) · 2.03 KB
/
includes.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{% load compress %}
<link rel="manifest" href="/static/manifest.json">
<!-- Angular Material, Font Awesome Icon Pack & Roboto Font -->
<link rel="stylesheet" href="/static/min/css/requirements.css">
<!-- Our Style Sheets -->
{% compress css %}
<link rel="stylesheet" href="/static/css/layout.css">
<link rel="stylesheet" href="/static/css/welcome.css">
<link rel="stylesheet" href="/static/css/dashboard.css">
<link rel="stylesheet" href="/static/css/schedule.css">
<link rel="stylesheet" href="/static/css/courses.css">
<link rel="stylesheet" href="/static/css/emails.css">
<link rel="stylesheet" href="/static/css/calendar.css">
<link rel="stylesheet" href="/static/css/notfound.css">
<link rel="stylesheet" href="/static/css/account.css">
{% endcompress %}
<!-- Angular.js, ngStorage, mdCalendar, Angular Material & Dependencies -->
<script src="/static/min/js/requirements.js"></script>
<!-- Our Angular App & Scripts -->
{% compress js %}
<script src="/static/js/scripts.js"></script>
<script src="/static/js/app.js"></script>
<script src="/static/js/factories.js"></script>
<script src="/static/js/layout.js"></script>
<script src="/static/js/login.js"></script>
<script src="/static/js/welcome.js"></script>
<script src="/static/js/dashboard.js"></script>
<script src="/static/js/schedule.js"></script>
<script src="/static/js/courses.js"></script>
<script src="/static/js/emails.js"></script>
<script src="/static/js/reports.js"></script>
<script src="/static/js/calendar.js"></script>
<script src="/static/js/notfound.js"></script>
<script src="/static/js/account.js"></script>
<script src="/static/js/submit.js"></script>
<script src="/static/js/cards.js"></script>
{% endcompress %}