| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- <!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>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>{:app_conf("SITE_NAME")}{:l("ADMIN_PLATFORM")}</title>
- <load href='__TMPL__Common/new/css/reset.css' />
- <load href='__TMPL__Common/new/css/frame.css' />
- <load href='__TMPL__Common/js/jquery.js' />
- <load href='__TMPL__Common/js/jquery.timer.js' />
- <load href='__TMPL__Common/js/left.js' />
- </head>
- <body>
- <div class="layout-left">
- <volist name="menus" id="menu_group" key="k">
- <div class="nav ">
- <div class="navlist hasmore <if condition="$k gt 0">a</if> active">
- <a class="" href="javascript:void(0)" >
- <i class="iconfont left basicdata"><b class="bg-success"></b></i>
- <span>{$menu_group.name}</span>
- <i class="iconfont right"></i>
- <div class="blank0"></div>
- </a>
- <div class="navtwo">
- <foreach name="menu_group.nodes" item="node">
- <a class="linkto " href="javascript:void(0)" data-href="{:u($node["module"]."/".$node["action"])}">
- <i class="iconfont left"></i>
- <span>{$node.name}</span>
- <i class="iconfont right"></i>
- <div class="blank0"></div>
- </a>
- </foreach>
- </div>
- </div>
- </div>
- </volist>
- </div>
- <script type="text/javascript">
- $(document).ready(function(){
- });
- </script>
- </body>
- </html>
- <!-- <!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>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>{:app_conf("SITE_NAME")}{:l("ADMIN_PLATFORM")}</title>
- <load href='__TMPL__Common/style/style.css' />
- <load href='__TMPL__Common/style/left.css' />
- <load href='__TMPL__Common/js/jquery.js' />
- <load href='__TMPL__Common/js/jquery.timer.js' />
- <load href='__TMPL__Common/js/left.js' />
- </head>
- <body>
- <volist name="menus" id="menu_group" key="k">
- <dl class="menu <if condition="$k gt 1">menu-hide</if>">
- <dt>{$menu_group.name}</dt>
- <foreach name="menu_group.nodes" item="node">
- <dd><a href="{:u($node["module"]."/".$node["action"])}">{$node.name}</a></dd>
- </foreach>
- </dl>
- </volist>
- <script type="text/javascript">
- jQuery(function(){
- $(".menu dt").click(function(){
- if($(this).parent().hasClass("menu-hide")){
- $(this).parent().removeClass("menu-hide");
- }
- else{
- $(this).parent().addClass("menu-hide");
- }
- });
- })
- </script>
- </body>
- </html> -->
|