unionCompany.html 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. <!DOCTYPE html>
  2. <html lang="en"
  3. xmlns:th="http://www.thymeleaf.org"
  4. xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
  5. layout:decorate="~{home/common/common}">
  6. <head>
  7. <meta charset="UTF-8">
  8. <title>服务联盟</title>
  9. </head>
  10. <body layout:fragment="content">
  11. <!-- 头部导航 -->
  12. <div th:replace="~{home/common/header :: header}"></div>
  13. <!--nav-->
  14. <div class="center_nav">
  15. <div th:replace="~{home/common/header :: nav}"></div>
  16. </div>
  17. <!--面包屑-->
  18. <div class="container projects">
  19. <div class="row">
  20. <div class="col-sm-6 col-md-6 col-lg-8 hidden-xs" style="padding-left: 0;">
  21. <ol class="breadcrumb" style="padding-top: 15px;border-bottom: 0px solid #fff;margin-bottom: 0;">
  22. <li>
  23. <a th:href="@{/home}">首页</a>
  24. </li>
  25. <li class="active"><a><cite>服务联盟</cite></a></li>
  26. </ol>
  27. </div>
  28. </div>
  29. </div>
  30. <div class="container">
  31. <img th:src="${fileUrl} +*{navigation.fileDown.file_url}" style="width: 100%">
  32. <div class="introduceContent">
  33. <p th:text="${navigation.name}"></p>
  34. <article>
  35. <p th:utext="${navigation.content}"></p>
  36. </article>
  37. </div>
  38. </div>
  39. <div class="container">
  40. <div class="corporationContent">
  41. <ul>
  42. <div class="swiper-slide" ><a ></a></div>
  43. <li th:each="content,iterStat:${contentServices}" th:object="${content}">
  44. <a th:href="@{'/home/contentDetail/'+*{id}}">
  45. <img th:src="${fileUrl} +*{fileDown.file_url}">
  46. <h4>[[*{title}]]</h4>
  47. </a>
  48. </li>
  49. </ul>
  50. </div>
  51. </div>
  52. <!--页底-->
  53. <div th:replace="~{home/common/footer :: footer}"></div>
  54. <style>
  55. .tabLs .li {
  56. display: inline-block;
  57. }
  58. .tabCon .li {
  59. display: none;
  60. }
  61. </style>
  62. <script>
  63. $("li[role='presentation']").removeClass();
  64. $("a[name='unionCompany']").parent().attr("class", "active");
  65. </script>
  66. </body>
  67. </html>