index.html 2.1 KB
<!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>