-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (54 loc) · 1.78 KB
/
index.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
{% load static %}
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- MAIN STYLESHEET -->
<link rel="stylesheet" href="{% static 'styles/app.css' %}" />
<!-- Favicon -->
<link rel="shortcut icon" href="{% static 'images/cloud_caster.png' %}" type="image/x-icon" />
<!-- Font Awesome icons -->
<script src="https://kit.fontawesome.com/14e8c0ae6a.js" crossorigin="anonymous"></script>
<!-- Mumble UI -->
<link rel="stylesheet" href="{% static 'uikit/styles/uikit.css' %}" />
<!-- TITLE OF THE PROJECT -->
<title>TechInferno Hub - Connect by Projects</title>
</head>
<body>
<!-- Navbar -->
{% include 'navbar.html' %}
<!-- End for Navbar -->
<!-- MESSAGES -->
{% if messages %}
<div id="message___box">
{% for message in messages %}
<div class="alert alert--{{message.tags}}">
<p class="alert__message">{{message}}</p>
<button class="alert__close">×</button>
</div>
{% endfor %}
</div>
{% endif %}
<!-- END FOR MESSAGES -->
<!-- OTHER-PAGE CONTENTS -->
{% block content %}
{% endblock content %}
<!-- END FOR OTHER-PAGE CONTENTS -->
<!-- FOOTER -->
{% include 'footer.html' %}
<!-- PRELOADER -->
<div id="preloader"></div>
<!-- BACK-TO-TOP BUTTON -->
<a href="#" class="back-to-top d-flex align-items-center justify-content-center">
<i class="fa-solid fa-arrow-up"></i>
</a>
</body>
<!-- Main js -->
<script src="{% static 'uikit/app.js' %}"></script>
<script src="{% static 'js/main.js' %}"></script>
<script src="{% static 'js/loader.js' %}"></script>
<script src="{% static 'js/backtotop.js' %}"></script>
<script src="{% static 'js/fileInput.js' %}"></script>
</html>