-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmessage.php
56 lines (54 loc) · 1.83 KB
/
message.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
<?php
/**
* 留言模板
*
* @package custom
*/
?>
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<title><?php $this->fields->biaoti(); ?> | <?php $this->options->title() ?></title>
<meta name="keywords" content="<?php $this->fields->guanjianci(); ?>" />
<meta name="description" content="<?php $this->fields->miaoshu(); ?>" />
<?php include('head.php'); ?>
</head>
<body class="black-color dark-slider">
<div id="wrapper">
<div class="row">
<?php include('sidebar.php'); ?>
</div>
</div>
<div id="main">
<div class="container coverflow-wrapper">
<div id="coverflow" class="unfull coverr">
<div class="showBox">
<div class="current">
<div class="page">
<div class="container flex-row-middle coverflow">
<div class="content flex-column-middle" style="width: 100%;">
<h1><?php $this->fields->biaoti(); ?></h1>
</div>
</div>
</div>
</div>
</div>
<div class="imgColor" style="background:url(<?php $this->fields->pic(); ?>) no-repeat;background-size:cover;background-position: center"></div>
</div>
</div>
<div class="container postListsModel">
<div class="row">
<div class="col-md-12 col-lg-12">
<div class="col-xs-12">
<div class="row postLists">
<?php include('comments.php'); ?>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div><?php include('footer.php'); ?>