Skip to content

Commit

Permalink
redesign footer (#1674)
Browse files Browse the repository at this point in the history
* redesign footer

* remove about test
  • Loading branch information
Ludy87 authored Aug 13, 2024
1 parent f176558 commit 503a1c9
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 7 deletions.
6 changes: 5 additions & 1 deletion src/main/resources/static/css/footer.css
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,8 @@

.footer-icon {
font-size: 2rem;
}
}

.footer-link {
text-decoration: none;
}
18 changes: 12 additions & 6 deletions src/main/resources/templates/fragments/footer.html
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
<footer th:fragment="footer" id="footer" class="text-center py-5">
<div class="footer-center">
<footer th:fragment="footer" id="footer" class="text-center pt-5">
<div class="footer-center pb-4">
<!-- Links section -->
<div class="d-flex justify-content-center">
<ul class="list-unstyled d-flex">
<li><a class="footer-link px-2" id="licenses" target="_blank" th:href="@{'/licenses'}" th:text="#{licenses.nav}">Licenses</a></li>
<li><a class="footer-link px-2" id="survey" target="_blank" href="https://stirlingpdf.info/s/clwzgtfw7000gltkmwz1n212m" th:text="#{survey.nav}">Survey</a></li>
</ul>
</div>

<!-- powered by section -->
<div class="footer-powered-by">
<span th:text="#{poweredBy} + ' Stirling PDF'"></span>
</div>
<a th:href="@{'/licenses'}" id="licenses" target="_blank" class="mx-1" title="" th:text="#{licenses.nav}">Licenses</a>
<a href="https://stirlingpdf.info/s/clwzgtfw7000gltkmwz1n212m" id="survey" target="_blank" class="mx-1" title="" th:text="#{survey.nav}">Survey</a>
</div>
</footer>

</footer>

0 comments on commit 503a1c9

Please sign in to comment.