Skip to content

Commit

Permalink
Add rickroll :^)
Browse files Browse the repository at this point in the history
  • Loading branch information
dnl50 committed Feb 22, 2023
1 parent defa283 commit b833a2e
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion web/src/main/resources/templates/fragments/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,15 @@
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<footer th:fragment="footer" class="footer">
<div class="container-fluid bg-dark">
<div class="d-flex justify-content-end">
<div id="footer-version" class="d-flex justify-content-end">
<span class="text-muted py-2" th:text="'Version ' + ${@applicationVersionService.getApplicationVersion()}"/>
</div>
</div>

<script th:inline="javascript">
$("#footer-version").dblclick(function () {
window.location.replace("https://www.youtube.com/watch?v=dQw4w9WgXcQ");
});
</script>
</footer>
</html>

0 comments on commit b833a2e

Please sign in to comment.