123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- <!doctype html>
- <html>
- <head>
- <meta charset="utf-8">
- <title>${siteTitle!}</title>
- <link rel="stylesheet" type="text/css" href="${resPath}/syrc/css/ly_html.css">
- <link rel="stylesheet" type="text/css" href="${resPath}/syrc/css/syrc-body.css">
- <link rel="stylesheet" type="text/css" href="${resPath}/syrc/css/syrc-page.css">
- <script src="${resPath}/syrc/js/jquery-1.7.2.min.js"></script>
- <script src="${resPath}/syrc/js/TL_Tab.js"></script>
- <script src="${resPath}/syrc/js/TL_PC_Slider.js"></script>
- </head>
- <style>
- .fy .pag li a {width: auto;float: none;color: #333;}
- .fy .pag {
- text-align: center;
- height: 20px;
- line-height: 20px;
- clear: both;
- float: none;
- padding: 0px;
- }
- .fy .pag li {
- text-align: center;
- margin: 0px 2px;
- padding: 0px 8px;
- height: 20px;
- line-height: 20px;
- text-decoration: none;
- display: inline-block;
- border: 1px solid #318ddc;
- width: auto;
- }
- .fy .pag .current {
- background-color: #318ddc;
- }
- </style>
- <body>
- <!--头部开始-->
- @includeFileTemplate("/www/syrc/include/header.html",{"current":"index"}){}
- <!--头部结束-->
- <!--内容开始-->
- <div class="contentbox">
- <!--当前位置开始-->
- <p class="rsj_dqwzbox">
- <#cms_site_pos site="${site}" category="${category}" var="bean">
- 当前位置:
- ${bean.baseURL}
- >>
- @for(location in bean.locations){
- ${location.categoryName}
- @if(!locationLP.last){
- >>
- @}
- @}
- </#cms_site_pos></p>
- <div class="clear"></div>
- <div class="all_title"><i></i><a target="_blank">${category.categoryName}</a></div>
- <#cms_category categoryId="${category.categoryId}" isParent="1" var="bean">
- <ul class="img_list clearfix">
- <#cms_content_page siteId="${site.siteId!}" titleLen="66" page="${page!}" var="content">
- <li>
- <a target="_blank" href="${content.url!}"><img src="${content.thumb!}"/></a>
- <p><a target="_blank" href="${content.url!}">${content.title!}</a></p>
- </li>
- </#cms_content_page>
-
- </ul>
- <!--分页开始-->
- <div id="fy" name="fy" class="fy">
- <ul class="pag">
- <#cms_pagination siteId="${site.siteId}" categoryId="${category.categoryId}" page="${page}" moreNum="6" var="page" >
- <li>${page.first}</li>
- @for(change in page.changePage){
- @if(!change.isLink){
- @if(change.isMore){
- <li>${change.value!}</li>
- @}else{
- <li class="current">${change.value!}</li>
- @}
- @}else{
- <li> ${change.url!}</li>
- @}
- @}
- <li>${page.next}</li>
- </#cms_pagination>
- </ul>
- </div>
- <!--分页结束-->
-
- </div>
- <!--内容结束-->
- </#cms_category>
- <!--底部开始-->
- @includeFileTemplate("/www/syrc/include/footer.html",{"current":"index"}){}
- <!--底部结束-->
- </body>
- </html>
|