home.html 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <!DOCTYPE html>
  2. <html xmlns="http://www.w3.org/1999/xhtml"
  3. xmlns:th="http://www.thymeleaf.org">
  4. <head th:replace="~{layouts/common.html :: head}"></head>
  5. <body id="page-top">
  6. <!-- Navigation -->
  7. <nav th:replace="~{layouts/common.html :: navbar}"></nav>
  8. <!-- Content -->
  9. <div class="content uv-content" id="uv-wrapper">
  10. <div class="bg-light border-right" id="uv-sidebar-wrapper" th:replace="~{layouts/sidebar.html :: sidebar}"></div>
  11. <div class="container uv-home-section" id="uv-content-wrapper">
  12. <div class="uv-container">
  13. </div>
  14. </div>
  15. </div>
  16. <!-- contactModal -->
  17. <div th:replace="~{layouts/common.html :: contactModal}"></div>
  18. <!-- Footer -->
  19. <footer class="uv-footer uv-footer-text" th:replace="~{layouts/common.html :: footer}"></footer>
  20. <script th:src="@{/js/jquery/jquery.min.js}"></script>
  21. <script th:src="@{/js/bootstrap/bootstrap.min.js}"></script>
  22. <script th:src="@{/js/fa/all.js}"></script>
  23. <script th:src="@{/js/jquery-easing/jquery.easing.min.js}"></script>
  24. <script th:src="@{/js/docentia.js}"></script>
  25. <script type="text/javascript">
  26. function changeLocale(locale){
  27. window.location.replace('?lang=' + locale);
  28. }
  29. $(function () {
  30. $("#uv-wrapper").height($(window).height() - 86);
  31. });
  32. </script>
  33. </body>
  34. </html>