index.html 476 B

123456789101112131415161718192021
  1. <!DOCTYPE html>
  2. <html xmlns:th="http://www.thymeleaf.org">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>前端展示</title>
  6. </head>
  7. <body>
  8. <a th:href="@{/admin/login}">
  9. 点我跳转到后台
  10. </a>
  11. </body>
  12. <script>
  13. var _hmt = _hmt || [];
  14. (function() {
  15. var hm = document.createElement("script");
  16. hm.src = "https://hm.baidu.com/hm.js?76968355bd5f8c263c65a1ad6dca8fa8";
  17. var s = document.getElementsByTagName("script")[0];
  18. s.parentNode.insertBefore(hm, s);
  19. })();
  20. </script>
  21. </html>