Add rotate and compress (#7)

* Add files via upload

* Update build.gradle

* Update general.css
This commit is contained in:
Anthony Stirling
2023-01-29 17:06:53 +00:00
committed by GitHub
parent b56e5a0e05
commit cd4bd2a796
15 changed files with 496 additions and 106 deletions

View File

@@ -12,29 +12,31 @@
<li class="nav-item"><a class="nav-link" href="#"
th:href="@{/merge-pdfs}"
th:classappend="${currentPage}=='/merge-pdfs' ? 'active' : ''">Merge
th:classappend="${currentPage}=='merge-pdfs' ? 'active' : ''">Merge
PDFs</a></li>
<li class="nav-item"><a class="nav-link" href="#"
th:href="@{/split-pdfs}"
th:classappend="${currentPage}=='/split-pdfs' ? 'active' : ''">Split
th:classappend="${currentPage}=='split-pdfs' ? 'active' : ''">Split
PDFs</a></li>
<li class="nav-item"><a class="nav-link" href="#"
th:href="@{/convert-to-pdf}"
th:classappend="${currentPage}=='/convert-to-pdf' ? 'active' : ''">Convert
to PDF</a></li>
<li class="nav-item"><a class="nav-link" href="#"
th:href="@{/convert-from-pdf}"
th:classappend="${currentPage}=='/convert-from-pdf' ? 'active' : ''">Convert
from PDF</a></li>
th:href="@{/convert-pdf}"
th:classappend="${currentPage}=='convert-pdf' ? 'active' : ''">Convert
to/from PDF</a></li>
<li class="nav-item"><a class="nav-link" href="#"
th:href="@{/add-image}"
th:classappend="${currentPage}=='/add-image' ? 'active' : ''">Add
th:classappend="${currentPage}=='add-image' ? 'active' : ''">Add
image to PDF</a></li>
<li class="nav-item"><a class="nav-link" href="#"
th:href="@{/pdf-organizer}"
th:classappend="${currentPage}=='/pdf-organizer' ? 'active' : ''">PDF
th:classappend="${currentPage}=='pdf-organizer' ? 'active' : ''">PDF
Organizer</a></li>
<li class="nav-item"><a class="nav-link" href="#"
th:href="@{/rotate-pdf}"
th:classappend="${currentPage}=='rotate-pdf' ? 'active' : ''">Rotate PDF</a></li>
<li class="nav-item"><a class="nav-link" href="#"
th:href="@{/compress-pdf}"
th:classappend="${currentPage}=='compress-pdf' ? 'active' : ''">Compress PDF</a></li>
<input type="checkbox" id="toggle-dark-mode"
th:onclick="javascript:toggleDarkMode()">
<a class="nav-link" href="#" for="toggle-dark-mode">Dark Mode</a>