Stirling-PDF/src/main/resources/templates/fragments/footer.html

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

42 lines
1.4 KiB
HTML
Raw Normal View History

2023-12-31 00:12:06 +01:00
<div th:fragment="footer">
<footer id="footer" class="text-center py-3">
<div class="footer-center">
2023-12-31 00:12:06 +01:00
<a href="https://github.com/Stirling-Tools/Stirling-PDF" target="_blank" class="mx-1" title="Visit Github Repository"><img src="images/github.svg"></img></a>
<a href="https://hub.docker.com/r/frooodle/s-pdf" target="_blank" class="mx-1" title="See Docker Hub"><img src="images/docker.svg"></img></a>
<a href="https://discord.gg/Cn8pWhQRxZ" target="_blank" class="mx-1" title="Join Discord Channel"><img src="images/discord.svg"></img></a>
<a href="https://github.com/sponsors/Frooodle" target="_blank" class="mx-1" title="Donate"><img src="images/suit-heart-fill.svg"></img></a>
</div>
<div class="right-link-container">
<a href="https://example.com" target="_blank" class="mx-1" title="Visit Example Site">
Licenses
</a>
</div>
<div th:if="${@appName} != 'Stirling PDF'" class="mt-2 footer-center" style="color: grey;">Powered by Stirling PDF</div>
<style>
#footer {
display: flex;
justify-content: space-between;
align-items: center;
width: 100%;
}
.footer-center {
display: flex;
justify-content: center;
align-items: center;
flex-grow: 1;
}
.right-link-container {
margin-left: auto; /* Push the link to the far right */
}
</style>
</footer>
2023-12-31 00:12:06 +01:00
</div>