| 
                        1234567891011121314151617181920212223242526272829303132333435363738394041424344 | 
                        - <!DOCTYPE html>
 - <html>
 - 	<head>
 - 		<meta charset="utf-8">
 - 		<meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
 - 		<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/font/css/font-awesome.min.css">
 - 		<link rel="stylesheet" href="<?php echo $cfg_cmsurl;?>/static/web/css/bootstrap.min.css">
 - 		<link rel="stylesheet" href="<?php echo $cfg_cmsurl;?>/static/web/css/style.css">
 - 	</head>
 - 	<body>
 - 		<?php pasterTempletDiy('top.htm');?>
 - 		<main class="container py-3">
 - 			<div class="row">
 - 				<div class="col-md-12">
 - 					<nav class="navbar navbar-expand-lg p-0">
 - 						<ul class="breadcrumb mr-auto">
 - 							<li class="breadcrumb-item">文档错误提示</li>
 - 						</ul>
 - 					</nav>
 - 					<table class="table mb-0">
 - 						<tr>
 - 							<td colspan="2"><?php echo $moremsg;?></td>
 - 						</tr>
 - 						<tr>
 - 							<td width="160">文档标题:</td>
 - 							<td><?php echo $arcLinktitle;?></td>
 - 						</tr>
 - 						<tr>
 - 							<td>文档简介:</td>
 - 							<td><?php echo $description;?></td>
 - 						</tr>
 - 						<tr>
 - 							<td>发布时间:</td>
 - 							<td><?php echo $pubdate;?></td>
 - 						</tr>
 - 					</table>
 - 				</div>
 - 			</div>
 - 		</main>
 - 		<?php pasterTempletDiy('foot.htm');?>
 - 	</body>
 - </html>
 
 
  |