layout-footer.html 3.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. <div th:fragment="layout-footer">
  2. <!-- <div class="footer-menutabs">-->
  3. <!-- <a href="/" class="footer-menutabs-item"-->
  4. <!-- th:classappend="${(request_uri == '/' ? 'active' : '')}">-->
  5. <!-- <img src="/images/icon-watch.svg" />-->
  6. <!-- <span th:text="#{footer.menu.home}"></span>-->
  7. <!-- </a>-->
  8. <!-- <a href="/article?category_id=1" class="footer-menutabs-item"-->
  9. <!-- th:classappend="${(request_uri + '?' + request_query_string) == '/article?category_id=1' ? 'active' : ''}">-->
  10. <!-- <img src="/images/icon-product.svg" />-->
  11. <!-- <span th:text="#{footer.menu.product}"></span>-->
  12. <!-- </a>-->
  13. <!-- <a href="/article?category_id=42" class="footer-menutabs-item"-->
  14. <!-- th:classappend="${(request_uri + '?' + request_query_string) == '/article?category_id=42' ? 'active' : ''}">-->
  15. <!-- <img src="/images/icon-video.svg" />-->
  16. <!-- <span th:text="#{footer.menu.video}"></span>-->
  17. <!-- </a>-->
  18. <!-- <a href="/article?category_id=43" class="footer-menutabs-item"-->
  19. <!-- th:classappend="${(request_uri + '?' + request_query_string) == '/article?category_id=43' ? 'active' : ''}">-->
  20. <!-- <img src="/images/icon-ce.svg" />-->
  21. <!-- <span th:text="#{footer.menu.ce}"></span>-->
  22. <!-- </a>-->
  23. <!-- &lt;!&ndash; 微信联系 &ndash;&gt;-->
  24. <!-- <a href="javascript:;" class="footer-menutabs-item" id="menuWechat"-->
  25. <!-- th:attr="data-text1=#{footer.menu.wechatinfo.text1}, data-text2=#{footer.menu.wechatinfo.text2}"-->
  26. <!-- >-->
  27. <!-- <img src="/images/icon-wechat.svg" />-->
  28. <!-- <span th:text="#{footer.menu.wechat}"></span>-->
  29. <!-- </a>-->
  30. <!-- <script>-->
  31. <!-- // [Click] 点击 微信联系-->
  32. <!-- $('#menuWechat').on('click', function() {-->
  33. <!-- var text1 = $(this).attr('data-text1')-->
  34. <!-- var text2 = $(this).attr('data-text2')-->
  35. <!-- layer.open({-->
  36. <!-- title: false, shadeClose: true, closeBtn: false,-->
  37. <!-- content: '<div class="menu-wechat-dialog-content">' +-->
  38. <!-- '<img src="/images/qrcode-wechat.jpg"/><div>' + text1 + '<br/>' + text2 + ':cpnana8</div>' +-->
  39. <!-- '</div>',-->
  40. <!-- btn: []-->
  41. <!-- })-->
  42. <!-- })-->
  43. <!-- </script>-->
  44. <!-- <style>-->
  45. <!-- .menu-wechat-dialog-content > img { display: block; width: 160px; height: 160px; margin: 10px auto; }-->
  46. <!-- .menu-wechat-dialog-content > div { font-size: 14px; text-align: center; line-height: 18px; }-->
  47. <!-- </style>-->
  48. <!-- </div>-->
  49. <!-- <div class="hjcl-layout-footer flex items-center justify-center">-->
  50. <!-- <div class="wrapper">-->
  51. <!-- <ul class="footer-nav flex items-center justify-center mb-2">-->
  52. <!-- <li th:each="nav, iterStat : ${navigation}" class="mx-2">-->
  53. <!-- <a th:href="${nav.link}" th:class="${'link underline-hover underline-offset-4 '}">-->
  54. <!-- <span th:text="${nav.navigation_name}"></span>-->
  55. <!-- </a>-->
  56. <!-- <span class="ml-3" th:if="${iterStat.index != navigation.size - 1}">|</span>-->
  57. <!-- </li>-->
  58. <!-- </ul>-->
  59. <div class="footer-copyright flex items-center justify-center">
  60. <span class="mx-1" th:utext="${siteInfo.copyright}"></span>
  61. <span class="mx-1" th:utext="${siteInfo.icp}"></span>
  62. </div>
  63. <!-- </div>-->
  64. <!-- </div>-->
  65. </div>