Sourcecode

Sort/templates/footer.html


footer.html

<div class="container">
    <footer class="d-flex flex-wrap justify-content-between align-items-center py-3 my-4 border-top">
        <div class="col-md-4 d-flex align-items-center">
            <a href="/" class="mb-3 me-2 mb-md-0 text-body-secondary text-decoration-none lh-1">
                <span class="nav">©2024 Marvin Niermann</span>
            </a>
        </div>

        <ul class="nav col-md-4 justify-content-end">
            <li class="nav-item"><a class="nav-link px-2 text-body-secondary" href="/">Startseite</a></li>
            <li class="nav-item"><a class="nav-link px-2 text-body-secondary" href="https://tmcz.de/">Weitere Projekte</a></li>
        </ul>
    </footer>
</div>