Stirling-PDF/src/main/resources/templates/fragments/navbarEntry.html

7 lines
466 B
HTML
Raw Normal View History

2023-07-24 00:05:02 +02:00
<div th:fragment="navbarEntry (endpoint, imgSrc, titleKey, descKey, tagKey)" th:if="${@endpointConfiguration.isEndpointEnabled(endpoint)}">
2023-08-20 22:57:19 +02:00
<a class="dropdown-item" href="#" th:href="@{${endpoint}}" th:classappend="${endpoint.equals(currentPage)} ? 'active' : ''" th:title="#{${descKey}}" th:data-bs-tags="#{${tagKey}}">
2023-05-16 23:44:53 +02:00
<img class="icon" th:src="@{${imgSrc}}" alt="icon">
2023-07-24 00:05:02 +02:00
<span class="icon-text" th:text="#{${titleKey}}"></span>
2023-05-16 23:44:53 +02:00
</a>
</div>