mirror of
https://github.com/Stirling-Tools/Stirling-PDF.git
synced 2025-05-15 02:35:54 +00:00
24 lines
737 B
HTML
24 lines
737 B
HTML
<div th:fragment="card" class="feature-card hidden" th:id="${id}" th:if="${@endpointConfiguration.isEndpointEnabled(cardLink)}"
|
|
th:data-bs-tags="${tags}">
|
|
<a th:href="${cardLink}">
|
|
<div class="d-flex align-items-center">
|
|
|
|
<div id="tool-icon" class="icon" alt="icon" th:class="@{${toolGroup}}">
|
|
<span class="material-symbols-rounded nav-icon" th:text="@{${toolIcon}}"></span>
|
|
</div>
|
|
|
|
<div id="tool-text">
|
|
<h5 class="card-title" th:text="${cardTitle}"></h5>
|
|
<p class="card-text" th:text="${cardText}"></p>
|
|
</div>
|
|
|
|
</div>
|
|
</a>
|
|
<div class="favorite-icon" onclick="toggleFavorite(this)">
|
|
<span class="material-symbols-rounded">
|
|
star
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</div>
|