about.html
1.5 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>公司介绍</title>
<link rel="stylesheet" href="__TMPL__/public/assets/css/base.css">
</head>
<body class="pro2_box">
<include file="public@nav"/>
<div class="product2_main product2_main22">
<div class="prp_tit prp_tit2">
<a href="">首页</a>
<img src="__TMPL__/public/assets/images/aicon09.png" alt="">
<a href="">公司介绍</a>
</div>
<div class="product2_mainBox">
<!-- <div class="pro2_tit">
<h2>{$shuju.post_title}</h2>
<p>发布时间:{$shuju.create_time|date="Y-m-d H:i:s",###}</p>
</div> -->
<div class="pro2_Txt">
{$shuju.post_content}
</div>
</div>
</div>
<include file="public@footer" />
<script type="text/javascript" src="__TMPL__/public/assets/js/jquery.js"></script>
<script>
// 头部下拉
$('.header2_box>ul>li').each(function () {
$(this).mouseover(function () {
$(this).children('.header2_box2').show();
}).mouseout(function () {
$(this).children('.header2_box2').hide();
})
});
</script>
</body>
</html>