|
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="{dede:global name='cfg_soft_lang'/}">
- <meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no">
- <title><?php echo $msgtitle;?>-<?php echo $cfg_webname;?></title>
- <link rel="stylesheet" href="<?php echo $cfg_cmsurl;?>/static/web/css/bootstrap.min.css">
- <link rel="stylesheet" href="<?php echo $cfg_cmsurl;?>/static/web/font/css/font-awesome.min.css">
- <link rel="stylesheet" href="<?php echo $cfg_cmsurl;?>/static/web/css/style.css">
- <script src="<?php echo $cfg_cmsurl;?>/static/web/js/jquery.min.js"></script>
- </head>
- <body>
- <?php pasterTempletDiy('header.htm');?>
- <div class="container py-3">
- <div class="formbox">
- <table width="100%" cellpadding="3" cellspacing="1" bgcolor="#DDEAC8" class="table">
- <tr bgcolor="#EFF4EA">
- <td colspan="2">错误具体提示信息:</td>
- </tr>
- <tr>
- <td colspan="2" align="center"><?php echo $moremsg;?></td>
- </tr>
- <tr>
- <td width="30%" align="center">栏目名称:</td>
- <td width="70%"><?php echo $lv->Fields['typename'];?></td>
- </tr>
- <tr>
- <td align="center">栏目简介:</td>
- <td><?php echo $lv->Fields['description'];?></td>
- </tr>
- </table>
- </div>
- </div>
- <?php pasterTempletDiy('footer.htm');?>
- </body>
- </html>
|