123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 |
- <!doctype html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta name="viewport" id="viewport" content="width=device-width, initial-scale=1" />
- <meta content="yes" name="apple-mobile-web-app-capable">
- <meta content="black" name="apple-mobile-web-app-status-bar-style">
- <meta content="telephone=no" name="format-detection">
- <title>分页</title>
- <link rel="stylesheet" href="${resPath}/syrc-mobile/images/sy_sjhtml.css"/>
- <link rel="stylesheet" href="${resPath}/syrc-mobile/images/sy_sjbase.css" />
- <link rel="stylesheet" href="${resPath}/syrc-mobile/images/cover.css" />
- <link rel="stylesheet" href="${resPath}/syrc-mobile/images/pop.css" />
- <link rel="stylesheet" href="${resPath}/syrc-mobile/images/list.css" />
- <link rel="stylesheet" href="${resPath}/syrc-mobile/images/detail.css" />
- <link rel="stylesheet" href="${resPath}/syrc-mobile/images/resume.css" />
- <link rel="stylesheet" href="${resPath}/syrc-mobile/images/syrc-gjrc.css" />
- </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>
- <div id="pageWp" class="bb">
- <div id="pageTop" >
- <!-- top 头部 开始-->
- <div class="sy_header">
- <span class="location"onclick="window.location.href='${ctxPath}/syrc/4';"><font style="font-size: 0.6rem;color: #747474;font-weight: bold">返回首页</font></span>
- <img src="${resPath}/syrc-mobile/images/sy_sj_27.png" /> <span class="ss_dz">
- @includeFileTemplate("/www/syrc-mobile/include/dlzc.html",{"current":"index"}){}
- </div>
- <!-- top 头部 结束-->
-
-
-
- </div>
- <div id="pageContent">
-
-
- <div class="mod">
- <!--工作动态-->
- <div class="t t2">${category.categoryName}</div>
- <div class="aox">
- <#cms_category categoryId="${category.categoryId}" isParent="1" var="bean">
- <ul class="all_list">
- <#cms_content_page siteId="${site.siteId!}" titleLen="15" page="${page!}" var="content">
- <li> <a href="${content.url!}">${content.title!}</a><em>${content.inputdate,dateFormat="yyyy年MM月dd日"}</en></li>
- @if(content.index%5==0){
- <li class="dashed"></li>
- @}
- </#cms_content_page>
- </ul>
- </div>
- <!--分页开始-->
- <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>
- <!--分页结束-->
- </#cms_category>
- </div>
- </div>
- </div>
- <!--footer 开始-->
- <div class="footerbox" style=" height:320px !important;">
- <table>
- <tr>
- <td align="center" valign="top">
- <img src="${resPath}/syrc-mobile/images/sy-index_82.png" width="38" height="38"/>
- <a href="${frontPath!}/4/991.html">关于我们</a>
- </td>
- <td align="center" valign="top">
- <img src="${resPath}/syrc-mobile/images/sy-index_84.png" width="38" height="38"/>
- <a href="${frontPath!}/4/992.html">法律申明</a>
- </td>
- <td align="center" valign="top">
- <img src="${resPath}/syrc-mobile/images/sy-index_86.png" width="38" height="38"/>
- <a href="${frontPath!}/4/993.html">帮助中心</a>
- </td>
- </tr>
- <tr>
- <td colspan="3" align="center"><p>版权所有松原人才市场 吉ICP备12002825号-2 </p></td>
- </tr>
- <tr>
- <td colspan="3" align="center"><p>增值电信业务经营许可证号:吉B2-20150082号</p></td>
- </tr>
- <tr>
- <td colspan="3" align="center"><p>技术支持:长春首佳科技有限公司</p></td>
- </tr>
- </table>
- </div>
-
- </body>
- </html>
|