-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpage.php
34 lines (27 loc) · 1.16 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
<?php get_header(); ?>
<div id="primary" class="tainacan-page-area col-md-12">
<div class="col-md-8 no-padding center">
<header class="page-header col-md-12 no-padding">
<h1 class="page-title"> <?php the_title(); ?> </h1>
</header>
<?php if( has_post_thumbnail() ): ?>
<div class="page-thumb" style="background: url(<?php echo get_the_post_thumbnail_url(); ?>)"> </div>
<?php endif;?>
<div id="primary" class="tainacan-content-area">
<main id="main" class="col-md-12" role="main">
<?php if (have_posts()):
while ( have_posts() ) : the_post(); ?>
<div class="single-post-wrapper">
<?php the_content(); ?>
</div>
<?php
endwhile;
else:
get_template_part( 'partials/content/content', 'none' );
endif;
?>
</main>
</div>
</div>
</div>
<?php get_footer(); ?>