<!-- Header -->
<nav class="navbar navbar-light bg-info d-flex justify-content-between">
    <a class="navbar-brand" href="#">
        <img src="../assets/flesh.png" width="30" height="30" class="d-inline-block align-top" alt="">
        Flesh UI
    </a>
    <ul class="navbar-nav mr-auto mt-2 mt-lg-0">
        <li class="nav-item dropdown">
            <a class="nav-link dropdown-toggle" data-toggle="dropdown" href="#" role="button" aria-haspopup="true" aria-expanded="false">{{ theme }}</a>
            <div class="dropdown-menu">
                {% for theme in themes %}
                    <a class="dropdown-item" href="{{ '../../' + theme + '/html/index.html' }}">{{ theme }}</a>
                {% endfor %}
            </div>
        </li>
    </ul>
</nav>
