-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.php
66 lines (55 loc) · 1.8 KB
/
about.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<?php
include_once "php/connect.php";
$page = "about";
?>
<!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="/favicon.ico">
<?php include_once "php/keywords.php";?>
<link rel="stylesheet" type="text/css" href="css/suncher.css" />
<script type="text/javascript" src="js/jquery.min.js"></script>
<script src="js/jquery.superslide.2.1.2.js" type="text/javascript"></script>
<script type="text/javascript" src="js/jquery.cookie.js"></script>
<script type="text/javascript" src="js/suncher.js"></script>
</head>
<body>
<!--header-->
<?php include_once "php/header.php";?>
<!--header end-->
<!--banner-->
<?php include_once "php/banner.php";?>
<!--banner end-->
<!--PageMain-->
<div class="PageMain">
<div class="PageLeft l">
<?php include_once "php/pageNav.php";?>
<?php include_once "php/pageRecommend.php";?>
</div>
<div class="PageRight r">
<div class="Top">
<div class="title l"><?php echo $pageName; ?></div>
<div class="crumbs r">当前位置:
<a href="<?php echo $navArr[0]["url"]; ?>"><?php echo $navArr[0]["name"]; ?></a> >
<a href="<?php echo $pageUrl; ?>" title="<?php echo $pageName; ?>"><?php echo $pageName; ?></a>
</div>
</div>
<div class="PageAbout">
<?php include_once "php/about/aboutText.php";?>
</div>
</div>
<div class="clear"></div>
</div>
<!--PageMain end-->
<!--Footer-->
<?php include_once("php/footer.php");?>
<!--Footer end-->
<!--floatBottom-->
<?php include_once("php/floatBottom.php");?>
<!--floatBottom end-->
</body>
</html>
<?php
mysqli_close($link);
?>