article-header.html 1.4 KB

12345678910111213141516171819202122232425262728
  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. </div>
  16. </div>
  17. <!--搜索-->
  18. <div class="search" id="topSearch">
  19. <input class="keyword" type="text" placeholder="请输入关键词" />
  20. <a class="searchBtn icon" href="javascript:void(0);"></a>
  21. </div>
  22. </div>
  23. <input type="hidden" th:value="${labelId}" id="labelId">
  24. <input type="hidden" th:value="${typeId}" id="typeId">
  25. <input type="hidden" th:value="${pageNum}" id="pageNum">
  26. <input type="hidden" th:value="${spiServer}" id="spiServer"><input type="hidden" th:value="${coreServer}" id="coreServer">
  27. <input type="hidden" th:value="${agent}" id="userAgent">
  28. </header>