mirror of
https://github.com/Stirling-Tools/Stirling-PDF.git
synced 2025-06-20 22:45:03 +00:00

- Support for adding and removing passwords - Support for watermarks - Dedicated page remover - Support for PDF permissions - Removed endpoint /home and replaced with / - Code cleanups - Fixed page titles
9 lines
298 B
HTML
9 lines
298 B
HTML
<div th:fragment="card" class="col-4 h-100">
|
|
<div class="dark-card card">
|
|
<div class="card-body">
|
|
<h5 class="card-title" th:text="${cardTitle}"></h5>
|
|
<p class="card-text" th:text="${cardText}"></p>
|
|
<a class="btn btn-primary" th:href="${cardLink}">Go</a>
|
|
</div>
|
|
</div>
|
|
</div> |