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

24 lines
737 B
HTML
Raw Normal View History

2024-05-18 12:47:21 +01:00
<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}">
2024-05-09 17:31:12 +04:00
<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)">
2024-10-14 22:34:41 +01:00
<span class="material-symbols-rounded">
star
</span>
</div>
2024-05-18 12:47:21 +01:00
</div>
</div>