2024-02-16 22:49:06 +01:00
|
|
|
<th:block th:fragment="navbarEntry(endpoint, imgSrc, titleKey, descKey, tagKey)" th:if="${@endpointConfiguration.isEndpointEnabled(endpoint)}">
|
|
|
|
|
<a class="dropdown-item" href="#" th:href="@{${endpoint}}" th:classappend="${endpoint.equals(currentPage)} ? 'active' : ''" th:title="#{${descKey}}" th:data-bs-tags="#{${tagKey}}">
|
|
|
|
|
<img class="icon" th:src="@{${imgSrc}}" alt="icon">
|
|
|
|
|
<span class="icon-text" th:text="#{${titleKey}}"></span>
|
|
|
|
|
</a>
|
|
|
|
|
</th:block>
|