diff --git a/biscuit/core/templates/core/base.html b/biscuit/core/templates/core/base.html index e2a2f9b3f76fe0f4a8f4bfb92572d71979b3e468..eb6bc0e74a22ece27e2e0f1f0de98a940237908e 100644 --- a/biscuit/core/templates/core/base.html +++ b/biscuit/core/templates/core/base.html @@ -51,7 +51,7 @@ <div class="row"> <div class="col-xs-12 col-sm-12 col-md-12 mt-2 mt-sm-2 text-center text-dark"> <p> - <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> + <a class="font-weight-bold text-dark" href="https://biscuit.edugit.org/">BiscuIT - The Free School Information System</a> © The BiscuIT Team @ <a class="font-weight-bold text-dark" href="https://www.teckids.org">Teckids e.V.</a> </p> </div> </div> diff --git a/biscuit/core/templates/footer-menu.html b/biscuit/core/templates/footer-menu.html index f7b3700ebf3016e65bdac64ae33be8c97116c733..6a77be7f47cc0f2a980c03b7336acbb53ab1441f 100644 --- a/biscuit/core/templates/footer-menu.html +++ b/biscuit/core/templates/footer-menu.html @@ -11,7 +11,7 @@ <h5>{{ item.name }}</h5> <ul class="list-unstyled quick-links"> {% for menu in item.submenu %} - <li><a href="{{ menu.url }}">{% fa 'fa-angle-double-right' %} {{ menu.name }}</a></li> + <li><a class="font-weight-bold text-dark" href="{{ menu.url }}">{% fa 'fa-angle-double-right' %} {{ menu.name }}</a></li> {% endfor %} </ul> </div> @@ -25,7 +25,7 @@ <h5>{% blocktrans %}Assorted{% endblocktrans %}</h5> <ul class="list-unstyled quick-links"> {% for item in menu.list %} - <li><a href="{{ item.url }}">{% fa 'fa-angle-double-right' %} {{ item.name }}</a></li> + <li><a class="font-weight-bold text-dark" href="{{ item.url }}">{% fa 'fa-angle-double-right' %} {{ item.name }}</a></li> {% endfor %} </ul> </div>