<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<body>
<div th:fragment="top">
<div class="top-bar">
<div class="top-bar-title">
<span data-responsive-toggle="main_menu" data-hide-for="medium">
<button class="menu-icon" type="button" data-toggle></button>
</span>
<div class="title-bar-title">
<div class="show-for-small-only">SOPDS</div>
<div class="show-for-medium">SIMPLE OPDS CATALOG</div>
</div>
</div>
<div class="top-bar-right">
<ul class="menu" style="font-size:90%;">
<li th:if="${user != null}">
<a th:href="@{/logout}">
<i class="fi-torsos"></i>Выйти (<span th:text="${user.username}">user</span>)
</a>
</li>
<li th:if="${user != null and user.isSuperuser}">
<a th:href="@{/settings}">
<i class="fi-widget"></i>Настройки
</a>
</li>
<li th:if="${user == null}">
<a th:href="@{/login}">
<i class="fi-torsos"></i>Войти
</a>
</li>
</ul>
</div>
</div>
</div>
</body>
</html>