|
|
1
|
+<!doctype html>
|
|
|
2
|
+<html lang="en">
|
|
|
3
|
+<head>
|
|
|
4
|
+ <meta charset="UTF-8">
|
|
|
5
|
+ <meta name="viewport"
|
|
|
6
|
+ content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
|
|
7
|
+ <meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
|
8
|
+ <title>公司介绍</title>
|
|
|
9
|
+ <link rel="stylesheet" href="__TMPL__/public/assets/css/base.css">
|
|
|
10
|
+</head>
|
|
|
11
|
+<body class="pro2_box">
|
|
|
12
|
+
|
|
|
13
|
+
|
|
|
14
|
+<include file="public@nav"/>
|
|
|
15
|
+
|
|
|
16
|
+
|
|
|
17
|
+ <div class="product2_main">
|
|
|
18
|
+ <div class="prp_tit">
|
|
|
19
|
+ <a href="">首页</a>
|
|
|
20
|
+ <img src="__TMPL__/public/assets/images/aicon09.png" alt="">
|
|
|
21
|
+ <a href="">公司介绍</a>
|
|
|
22
|
+ </div>
|
|
|
23
|
+ <div class="product2_mainBox">
|
|
|
24
|
+ <div class="pro2_tit">
|
|
|
25
|
+ <h2>{$data.post_title}</h2>
|
|
|
26
|
+ <p>发布时间:{$data.create_time|date="Y-m-d H:i:s",###}</p>
|
|
|
27
|
+ </div>
|
|
|
28
|
+
|
|
|
29
|
+ <div class="pro2_Txt">
|
|
|
30
|
+ {$data.post_content}
|
|
|
31
|
+ </div>
|
|
|
32
|
+ </div>
|
|
|
33
|
+ </div>
|
|
|
34
|
+
|
|
|
35
|
+
|
|
|
36
|
+ <include file="public@footer" />
|
|
|
37
|
+
|
|
|
38
|
+
|
|
|
39
|
+ <script type="text/javascript" src="__TMPL__/public/assets/js/jquery.js"></script>
|
|
|
40
|
+ <script>
|
|
|
41
|
+ // 头部下拉
|
|
|
42
|
+ $('.header2_box>ul>li').each(function () {
|
|
|
43
|
+ $(this).mouseover(function () {
|
|
|
44
|
+ $(this).children('.header2_box2').show();
|
|
|
45
|
+ }).mouseout(function () {
|
|
|
46
|
+ $(this).children('.header2_box2').hide();
|
|
|
47
|
+ })
|
|
|
48
|
+ });
|
|
|
49
|
+ </script>
|
|
|
50
|
+</body>
|
|
|
51
|
+</html> |