-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.html
36 lines (33 loc) · 838 Bytes
/
footer.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
{% load static %}
{% block content %}
<style>
#footer {
width: 100%;
position: relative;
margin-top: 1rem;
bottom: 0%;
background-color: white;
}
.footer-bottom {
padding: 1.5rem 0 1rem 0;
}
.footer-icons {
display: flex;
align-items: center;
justify-content: center;
column-gap: 1rem;
margin-bottom: .5rem;
}
</style>
<footer id="footer">
<div class="footer-bottom">
<div class="container">
<div class="text-center">
<p>© Copyright <strong>TechInferno Hub </strong>- {% now "Y" %}</p>
<p>Developed by <a href="https://www.linktr.ee/Rahulnisanth">Rahulnisanth</a>
</p>
</div>
</div>
</div>
</footer>
{% endblock content %}