-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage.php
65 lines (63 loc) · 2.48 KB
/
page.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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<title><?php if($this->fields->biaoti) {
echo $this->fields->biaoti.' | ';
} ?><?php $this->options->title() ?></title><?php if($this->fields->guanjianci): ?>
<meta name="keywords" content="<?php $this->fields->guanjianci(); ?>" /><?php endif; ?>
<?php if($this->fields->miaoshu): ?>
<meta name="description" content="<?php $this->fields->miaoshu(); ?>" /><?php endif; ?>
<?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 if($this->fields->biaoti) {
$this->fields->biaoti();
} else {
$this->options->title();
} ?></h1>
</div>
</div>
</div>
</div>
</div>
<div class="imgColor" style="background:url(<?php if($this->fields->pic) {
$this->fields->pic();
} else {
showThumbnail($this);
}
?>) 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">
<div class="article_wrapper post clearfix">
<article class="clearfix">
<?php $this->content(); ?>
</article>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div><?php include('footer.php'); ?>