main

mattermost/focalboard

Last updated at: 29/12/2023 09:42

footer.html

TLDR

This file is a partial HTML template for the footer section of a website. It includes the logo, links to the readme file and license, and references to JavaScript files.

Classes

<footer class='py-5'>
    <div class="container">
        <div class='d-flex justify-content-between'>
            <a href="/"><img class='header__logo' src="/img/logo.svg?version=v2" alt="Logo" width="180"></a>
            <div>
                <a href="https://github.com/mattermost/focalboard#readme-ov-file" target='_blank'>
                    Read me
                </a>
                |
                <a href="https://github.com/mattermost/focalboard/blob/main/LICENSE.txt" target='_blank'>
                    License
                </a>
            </div>
        </div>
    </div>
</footer>

<!-- JS -->
<script src="https://code.jquery.com/jquery-3.5.1.min.js"
    integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
<script src="{{ "js/tabs.js" | absURL }}"></script>
<script src="{{ "js/main.js" | absURL }}"></script>