diff --git a/biscuit/core/static/css/style.css b/biscuit/core/static/css/style.css index 594d6e43637f02ae88af9ad500164f0184273217..3fb2b16571e36d2427496b0f8717d5977a2dcced 100644 --- a/biscuit/core/static/css/style.css +++ b/biscuit/core/static/css/style.css @@ -1,3 +1,20 @@ +html { + position: relative; + min-height: 100%; +} + +body { + margin-bottom: 60px; +} + +.footer { + position: absolute; + bottom: 0; + width: 100%; + height: 60px; + line-height: 60px; +} + img.person-img { max-height: 300px; } diff --git a/biscuit/core/templates/core/base.html b/biscuit/core/templates/core/base.html index 0ffcbc3a5e12992dbe66f7f3fc68172cbde99c55..63d3df901f26312365de4950f4b2068d8c948d9d 100644 --- a/biscuit/core/templates/core/base.html +++ b/biscuit/core/templates/core/base.html @@ -41,4 +41,19 @@ {% block content %}{% endblock %} </main> + + <footer class="footer text-dark bg-light"> + <div class="container"> + <span class="text-muted"> + <a href="https://biscuit.edugit.org/"> + BiscuIT - The Free School Information System + </a> + ċ + © The BiscuIT Team @ + <a href="https://www.teckids.org/"> + Teckids e.V. + </a> + </span> + </div> + </footer> {% endblock %}