39 lines
1.6 KiB
Twig
39 lines
1.6 KiB
Twig
{% block footer %}
|
|
<footer class="footer position-absolute bottom-2 py-2 w-100">
|
|
<div class="container">
|
|
<div class="row align-items-center justify-content-lg-between">
|
|
<div class="col-12 col-md-6 my-auto">
|
|
<div class="copyright text-center text-sm text-white text-lg-start">
|
|
©
|
|
<script>
|
|
document.write(new Date().getFullYear())
|
|
</script>,
|
|
made by
|
|
<a href="https://www.creativetim.com" class="font-weight-bold text-white" target="_blank">CreativeTim</a>
|
|
</div>
|
|
</div>
|
|
<div class="col-12 col-md-6">
|
|
<ul class="nav nav-footer justify-content-center justify-content-lg-end">
|
|
<!--
|
|
Replace with links to company
|
|
<li class="nav-item">
|
|
<a href="https://www.creative-tim.com" class="nav-link text-white" target="_blank">Creative Tim</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a href="https://www.creative-tim.com/presentation" class="nav-link text-white" target="_blank">About Us</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a href="https://www.creative-tim.com/blog" class="nav-link text-white" target="_blank">Blog</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a href="https://www.creative-tim.com/license" class="nav-link pe-0 text-white" target="_blank">License</a>
|
|
</li>
|
|
-->
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
|
|
{% endblock %}
|