{% extends "templates/page.html" %}

{% block stylesheet %}
{{ super() }}
<style>
.footer-bottom {
    position: absolute; 
    bottom: 0;
}
</style>
{% endblock %}

{% block footer %}
<div class="container text-center footer-bottom" >
    <hr>
    <p>This JupyterHub is provided by the ITS and ATI at California State Univeristy San Bernardino</p>
</div>
{% endblock %}