xyzc.html
4.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<style>
</style>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>相应政策</title>
<script type="text/javascript" src="../../staticJs/head.js"></script>
<link rel="stylesheet" type="text/css" href="../../staticCss/xyzc.css">
</head>
<body>
<div class="navigation_crumbs">
<div class="contentBox">
<span class="layui-breadcrumb">
<a href="/index.html">首页</a>
<a>政务公开</a>
<a><cite>相应政策</cite></a>
</span>
</div>
</div>
<div class="laws_regulations">
<div class="item_list">
<ul id="flfgList">
#for(news : newsList.records)
#if(news.isTop == 1)
<li class="sticky">
#else
<li>
#end
<a title="#(news.headline)" href="../news/#(news.id).html" target="_blank" >
#(news.headline)
#if(news.isTop == 1)
<img class="istop" src="../../staticImages/ding.png">
#end
<p></p>
<span></span>
</a>
</li>
#end
</ul>
<div id="page">
<div class="layui-box layui-laypage layui-laypage-molv" id="layui-laypage-1">
#if(newsList.current == 1)
<a href="./1.html" class="layui-disabled" title="首页">首页</a>
#else
<a href="./1.html" class="layui-laypage-first" title="首页">首页</a>
<a href="./#(newsList.current - 1).html" class="layui-laypage-prev"><</a>
#end
#if(newsList.current == 1)
#else if(newsList.current == 2)
<a href="./1.html">1</a>
#else
<a href="./#(newsList.current - 2).html">#(newsList.current - 2)</a>
<a href="./#(newsList.current - 1).html">#(newsList.current - 1)</a>
#end
<span class="layui-laypage-curr">
<em class="layui-laypage-em" style="background-color:#0091FF;"></em>
<em>#(newsList.current)</em>
</span>
#if(newsList.current == newsList.pages)
#else if(newsList.current == newsList.pages - 1)
<a href="./#(newsList.current + 1).html">#(newsList.current + 1)</a>
#else
<a href="./#(newsList.current + 1).html">#(newsList.current + 1)</a>
<a href="./#(newsList.current + 2).html">#(newsList.current + 2)</a>
#end
#if(newsList.current == newsList.pages)
<a href="./#(newsList.pages).html" class="layui-disabled" title="尾页">尾页</a>
#else
<a href="./#(newsList.current + 1).html" class="layui-laypage-next">></a>
<a href="./#(newsList.pages).html" class="layui-laypage-last" title="尾页">尾页</a>
#end
</div>
</div>
</div>
<div class="recommend_list">
<ul class="policy_list">
<h2>相应政策</h2>
<div class="policy_list_con"></div>
</ul>
<ul class="news_list">
<h2>新闻推荐</h2>
<div class="news_list_con"></div>
</ul>
</div>
</div>
</body>
<script type="text/javascript" src="../../staticJs/common.js"></script>
<script type="text/javascript" src="../../staticJs/down.js"></script>
<script type="text/javascript" src="../../staticJs/xyzc.js"></script>
</html>