article-header.html 1.6 KB

123456789101112131415161718192021222324252627282930
  1. <header class="header" xmlns:th="http://www.w3.org/1999/xhtml">
  2. <!--导航栏-->
  3. <div class="nav">
  4. <div class="h5-head">
  5. <a class="index" href="/"><img src="/img/info/mall.png">商城</a>
  6. <a class="hotWord" href="javascript:void(0);">热搜词</a>
  7. </div>
  8. <div class="logo">
  9. <a href="/" target="_blank"><img src="/img/info/nav-logo.png"/></a>
  10. </div>
  11. <div class="type">
  12. <div>
  13. <!-- <a class="home" href="/" target="_blank">商城</a> -->
  14. <a th:each="type: *{articleType}" th:text="${type.name}" th:href="'/info/center-'+${type.id}+'-1.html'" th:class="${typeId==type.id}?'typeBtn current':'typeBtn'" th:typeId="${type.id}"></a>
  15. <a class="typeBtn" href="/document/beauty-archive.html" target="_blank">美业资料</a>
  16. <!-- <a class="typeBtn" href="/encyclopedia/product.html" target="_blank">采美百科</a> -->
  17. </div>
  18. </div>
  19. <!--搜索-->
  20. <div class="search auto-input" id="topSearch">
  21. <input class="keyword" type="text" placeholder="请输入关键词" autocomplete="off" />
  22. <a class="searchBtn icon" href="javascript:void(0);"></a>
  23. </div>
  24. </div>
  25. <input type="hidden" th:value="${labelId}" id="labelId">
  26. <input type="hidden" th:value="${typeId}" id="typeId">
  27. <input type="hidden" th:value="${pageNum}" id="pageNum">
  28. <input type="hidden" th:value="${coreServer}" id="coreServer">
  29. <input type="hidden" th:value="${agent}" id="userAgent">
  30. </header>