| 12345678910111213141516171819202122232425262728293031 |
- <!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" />
- <link rel="shortcut icon" href="{$mymps_global[SiteUrl]}/favicon.ico" />
- <link rel="stylesheet" href="{$mymps_global[SiteUrl]}/template/default/css/global.css" />
- <link rel="stylesheet" href="{$mymps_global[SiteUrl]}/template/default/css/aboutus.css" />
- <script src="{$mymps_global[SiteUrl]}/template/global/noerr.js" type="text/javascript"></script>
- <title>{$page_title}</title>
- </head>
- <body class="{$mymps_global[cfg_tpl_dir]} full">
- {mytemplate inc_head_about}
- <div class="clearfix"></div>
- <div class="sitemap">
- <div class="ul">
- <!--{loop $categories $mymps}-->
- <div class="h3"><a target="_blank" href='{$mymps[uri]}'>{$mymps_global[SiteCity]}{$mymps[catname]}</a></div>
- <div class="clearfix"></div>
- <ul>
- <!--{loop $mymps[children] $w}-->
- <li><a target="_blank" href='{$w[uri]}' title="{$mymps_global[SiteCity]}{$w[catname]}">{$mymps_global[SiteCity]}{echo cutstr($w[catname],15)}</a> </li>
- <!--{/loop}-->
- </ul>
- <!--{/loop}-->
- </div>
- </div>
- <div class="clear"></div>
- {mytemplate inc_foot_about}
- </body>
- </html>
|