forked from enviPath/enviPy
18 lines
672 B
HTML
18 lines
672 B
HTML
{% load static %}
|
|
{# Modern Tailwind Footer #}
|
|
<footer class="footer footer-center p-10 bg-base-200 text-base-content">
|
|
<div class="grid grid-flow-col gap-8">
|
|
<a href="http://eawag.ch" target="_blank">
|
|
<img height="60" src='{% static "/images/ealogo.gif" %}' alt="Eawag"/>
|
|
</a>
|
|
<a href="http://ml.auckland.ac.nz" target="_blank">
|
|
<img height="60" src='{% static "/images/uoa.png" %}' alt="The University of Auckland"/>
|
|
</a>
|
|
</div>
|
|
<div>
|
|
<div class="grid grid-flow-col gap-4">
|
|
<a href="mailto:admin@envipath.org" class="link link-hover">Contact</a>
|
|
</div>
|
|
</div>
|
|
</footer>
|