index.html
2.1 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>网站地图</title>
<link rel="stylesheet" href="__TMPL__/public/assets/css/base.css">
</head>
<body>
<div class="map_content">
<div class="header header_border">
<div class="header_content">
<div class="logo">
<a href="index.html">
<img src="{:cmf_get_image_url($logo.image)}" alt="">
</a>
</div>
</div>
</div>
<div class="map_box">
<div class="prp_tit">
<a href="index.html">首页</a>
<img src="__TMPL__/public/assets/images/aicon09.png" alt="">
<a href="">网站地图</a>
</div>
<div class="map_Text">
<dl>
<dt>首页</dt>
</dl>
<dl>
<dt>{$cptitle.name}</dt>
<volist name="cpson" id="vo">
<php>$arr=json_decode($vo['href'],true);</php>
<dd><a href="{:url($arr['action'],$arr['param'])}">{$vo.name}</a></dd>
</volist>
</dl>
<dl>
<dt>{$gstitle.name}</dt>
<volist name="gsson" id="vo">
<php>$arr=json_decode($vo['href'],true);</php>
<dd><a href="{:url($arr['action'],$arr['param'])}">{$vo.name}</a></dd>
</volist>
</dl>
<dl>
<dt>{$qtitle.name}</dt>
<volist name="qitason" id="vo">
<dd><a href="{$vo.url}">{$vo.title}</a></dd>
</volist>
</dl>
</div>
</div>
<include file="public@footer" />
</div>
</body>
</html>