12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <!DOCTYPE html>
- <html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org" xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">
- <head th:replace="common::header(~{::title},~{::link},~{::meta})">
- <meta charset="UTF-8">
- <meta http-equiv="X-UA-Compatible" content="ie=edge">
- <title>友情链接</title>
- <!-- 二级页面CSS -->
- <link rel="stylesheet" th:href="${portalHost+'/css/secode.css'}">
- <!-- 自定义动画样式 -->
- <link rel="stylesheet" th:href="${portalHost+'/css/swiper.min.css'}">
- </head>
- <style>
- .linkAll>span:hover {
- color: rgb(10, 98, 156);
- }
- </style>
- <body>
- <div class="app">
- <!-- 头部 -->
- <!-- 头部 -->
- <header>
- <div th:replace="common::nav('','')"></div>
- <div class="swiper-containerx">
- <img th:src="${banners}==null?${portalHost+'/images/banner/about_bg.png'}:${avatarUploadHost}+${banners.bannerUrl}" />
- <div class="swiper_title">
- <h6>新闻动态</h6>
- </div>
- </div>
- </header>
- <!-- 主体内容 -->
- <div class="client main" >
- <div class="secondary-menu news-text">
- <div class="container">
- <ul>
- <li class="active"><a href="javascript:;">友情链接</a> </li>
- </ul>
- </div>
- </div>
- <div style="padding:6px 20px;width:70vw;margin: 0 auto;">
- <h3>友情链接</h3>
- <div class="linkAll" style="margin: 6px 0;" >
- <span class="spanLinkMore" style="display: inline-block;padding-right: 6px;" th:each="link:${links}"><a style="color:#7E7F7F" th:href="${link.url}" th:text="${link.name}"></a></span>
- </div>
- </div>
- </div>
- <!-- 主体内容 end -->
- <!-- 底部 -->
- <footer>
- <div th:replace="common::copyright('')"></div>
- </footer>
- <!-- 底部 end -->
- </div>
- <div th:replace="common::footer(~{::script},'')">
- <!-- 引入分页 -->
- <script th:src="${portalHost+'/js/page.js'}"></script>
- </div>
- </body>
- </html>
|