headerLogin.html 787 B

1234567891011121314151617181920212223242526
  1. <!DOCTYPE html>
  2. <html xmlns:th="http://www.thymeleaf.org"
  3. xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">
  4. <head>
  5. <title></title>
  6. </head>
  7. <body>
  8. <!-- 头部 -->
  9. <div class="head" th:fragment="headerLogin">
  10. <div class="w1300 container clearfix">
  11. <div class="logo fl">
  12. <!-- <img th:src="@{*{fileUrl}+*{logo.fileDown.file_url}}" th:alt="*{logo.fileDown.file_name}">-->
  13. <img th:src="@{/img/logoPng.png}" alt="" style="background-color: #488DFB">
  14. <span>苏州高新区企业服务云平台</span>
  15. </div>
  16. <!--<div class="name fl hidden-xs">-->
  17. <!--<a th:href="${logo.link}" th:if="${logo.link}">[[${logo.name}]]</a>-->
  18. <!--<span th:unless="${logo.link}">[[${logo.name}]]</span>-->
  19. <!--</div>-->
  20. </div>
  21. </div>
  22. </body>
  23. </html>