forked from ghboke/CorePressWPTheme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
page-full.php
48 lines (46 loc) · 1.07 KB
/
page-full.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
<?php
// TEMPLATE NAME: CorrPress全宽页面
the_post();
?>
<!doctype html>
<html lang="zh">
<head>
<?php get_header(); ?>
</head>
<body>
<div id="app">
<header>
<div class="header-main container">
<?php
get_template_part('component/nav-header');
?>
</div>
</header>
<div style="min-height: 80px;width: 100%;"></div>
<main class="container">
<div class="html-main">
<?php
global $set;
if ($set['theme']['sidebar_position'] == 1) {
?>
<div class="post-main post-main-full">
<?php get_template_part('component/post-content'); ?>
</div>
<?php
} else {
?>
<div class="post-main post-main-full">
<?php get_template_part('component/post-content'); ?>
</div>
<?php
}
?>
</div>
</main>
<footer>
<?php get_footer(); ?>
</footer>
</div>
</body>
</html>
<?php