mirror of
https://github.com/Stirling-Tools/Stirling-PDF.git
synced 2025-06-20 06:25:02 +00:00
22 lines
1.1 KiB
HTML
22 lines
1.1 KiB
HTML
<th:block th:fragment="navbarEntry(endpoint, toolIcon, titleKey, descKey, tagKey, toolGroup)"
|
|
th:if="${@endpointConfigurationService.isEndpointEnabled(endpoint)}">
|
|
<a th:id="@{${endpoint}}" class="dropdown-item" style="position:relative" th:href="@{${endpoint}}"
|
|
th:data-bs-link="@{${endpoint}}"
|
|
th:classappend="${endpoint.equals(currentPage)} ? ${toolGroup} + ' active' : '' + ${toolGroup}"
|
|
th:data-bs-tags="#{${tagKey}}" th:data-bs-title='#{${titleKey}}'>
|
|
<div style="min-height:2.5rem;align-items: center;display: flex" th:title="#{${descKey}}" class="icon" alt="icon"
|
|
th:class="@{${toolGroup}}">
|
|
<svg class="nav-icon"
|
|
style="height: 2.7rem; width:2.7rem; align-items:center; display: flex; justify-content: center;">
|
|
<use th:xlink:href="@{${toolIcon}}"></use>
|
|
</svg>
|
|
<span class="icon-text" th:text="#{${titleKey}}"></span>
|
|
</div>
|
|
<span class="material-symbols-rounded favorite-icon" style="display: none;" th:data-endpoint="@{${endpoint}}"
|
|
th:onclick="'addToFavorites(\'' + @{${endpoint}} + '\')'">
|
|
star
|
|
</span>
|
|
</a>
|
|
|
|
</th:block>
|