Add footer, remove ugly background

This commit is contained in:
Corban-Lee Jones 2024-04-26 11:46:16 +01:00
parent f97fd13ffd
commit 15e4d4c503
2 changed files with 17 additions and 7 deletions

View File

@ -1,5 +1,14 @@
<footer class="bdT ta-c p-30 lh-0 fsz-sm c-grey-600 bg-body">
<span>
&copy; Designed by Colorlib.
</span>
</footer>
<div class="container">
<footer class="border border-bottom-0 bg-body-secondary px-4 py-3 d-flex flex-wrap justify-content-between align-items-center text-body-secondary">
<div class="col-md-4 d-flex align-items-center">
<span>&copy; 2024 PYRSS</span>
</div>
<ul class="nav col-md-4 d-flex justify-content-end list-unstyled">
<li class="ms-3">
<a href="https://gitea.corbz.dev/corbz/PYRSS-Website" class="text-reset" target="_blank">
<i class="bi bi-git fs-5"></i>
</a>
</li>
</ul>
</footer>
</div>

View File

@ -20,11 +20,12 @@
{% block stylesheets %}{% endblock stylesheets %}
</head>
<body data-bs-theme="light" class="bg-body bg-gradient vh-100">
<body data-bs-theme="light" class="bg-body vh-100">
<div class="h-100 d-flex flex-column align-items-stretch flex-nowrap" style="background-image: url('/static/images/background-texture.webp'); background-size: cover;">
<div class="h-100 d-flex flex-column align-items-stretch flex-nowrap">
{% include 'includes/navbar.html' %}
{% block content %}{% endblock content %}
{% include 'includes/footer.html' %}
</div>