-
Notifications
You must be signed in to change notification settings - Fork 118
/
page.php
40 lines (39 loc) · 1.49 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
<?php
/**
* @package lolimeow@boxmoe themes
* @link https://www.boxmoe.com
*/
get_header();
?>
<section class="section-blog-breadcrumb container">
<div class="breadcrumb-head">
<span>
<i class="fa fa-home"></i>Page</span>
</div>
</section>
<section id="boxmoe_theme_container">
<div class="container">
<div class="row">
<div class="blog-single <?php echo boxmoe_blog_layout() ?> fadein-bottom">
<div class="post-single <?php echo boxmoe_border()?>"><?php while (have_posts()) : the_post(); ?>
<H1 class="single-title"><?php the_title(); echo get_the_subtitle(); ?></H1>
<hr class="horizontal dark">
<div class="single-content">
<?php the_content(); ?>
<?php wp_link_pages(array('before' => '<div class="fenye pagination justify-content-center">', 'after' => '</div>', 'next_or_number' => 'number','link_before' =>'<span>', 'link_after'=>'</span>')); ?>
</div>
<?php endwhile; ?>
<?php if (get_boxmoe('comments_off')): ?>
<div class="thw-sept"></div>
<?php comments_template( '', true); ?>
<?php endif; ?>
</div>
</div>
<?php if (get_boxmoe('blog_layout')== 'two' ): ?>
<?php get_sidebar();?>
<?php endif; ?>
</div>
</div>
</section>
<?php
get_footer();