Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
466 B
HTML
Raw Normal View History

2023-07-23 23:05:02 +01:00
<div th:fragment="navbarEntry (endpoint, imgSrc, titleKey, descKey, tagKey)" th:if="${@endpointConfiguration.isEndpointEnabled(endpoint)}">
2023-08-20 21:57:19 +01: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 22:44:53 +01:00
<img class="icon" th:src="@{${imgSrc}}" alt="icon">
2023-07-23 23:05:02 +01:00
<span class="icon-text" th:text="#{${titleKey}}"></span>
2023-05-16 22:44:53 +01:00
</a>
</div>