| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- <!DOCTYPE html>
- <html lang="en"
- xmlns:th="http://www.thymeleaf.org"
- xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
- layout:decorate="~{home/common/common}">
- <head>
- <meta charset="UTF-8">
- <title>服务联盟</title>
- </head>
- <body layout:fragment="content">
- <!-- 头部导航 -->
- <div th:replace="~{home/common/header :: header}"></div>
- <!--nav-->
- <div class="center_nav">
- <div th:replace="~{home/common/header :: nav}"></div>
- </div>
- <!--面包屑-->
- <div class="container projects">
- <div class="row">
- <div class="col-sm-6 col-md-6 col-lg-8 hidden-xs" style="padding-left: 0;">
- <ol class="breadcrumb" style="padding-top: 15px;border-bottom: 0px solid #fff;margin-bottom: 0;">
- <li>
- <a th:href="@{/home}">首页</a>
- </li>
- <li class="active"><a><cite>服务联盟</cite></a></li>
- </ol>
- </div>
- </div>
- </div>
- <div class="container">
- <img th:src="${fileUrl} +*{navigation.fileDown.file_url}" style="width: 100%">
- <div class="introduceContent">
- <p th:text="${navigation.name}"></p>
- <article>
- <p th:utext="${navigation.content}"></p>
- </article>
- </div>
- </div>
- <div class="container">
- <div class="corporationContent">
- <ul>
- <div class="swiper-slide" ><a ></a></div>
- <li th:each="content,iterStat:${contentServices}" th:object="${content}">
- <a th:href="@{'/home/contentDetail/'+*{id}}">
- <img th:src="${fileUrl} +*{fileDown.file_url}">
- <h4>[[*{title}]]</h4>
- </a>
- </li>
- </ul>
- </div>
- </div>
- <!--页底-->
- <div th:replace="~{home/common/footer :: footer}"></div>
- <style>
- .tabLs .li {
- display: inline-block;
- }
- .tabCon .li {
- display: none;
- }
- </style>
- <script>
- $("li[role='presentation']").removeClass();
- $("a[name='unionCompany']").parent().attr("class", "active");
- </script>
- </body>
- </html>
|