-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage.php
34 lines (34 loc) · 1.19 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="content">
<main>
<article class="entry">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="wrap">
<?php breadcrumb(); ?>
</div>
<div class="main">
<div class="wrap">
<header class="article-header">
<h1 class="entry-title"><?php the_title(); ?></h1>
<?php if (has_post_thumbnail()) : ?>
<?php the_post_thumbnail('full'); ?>
<?php endif; ?>
</header>
</div>
</div>
<section class="entry-content">
<div class="main">
<div class="wrap">
<?php the_content(); ?>
</div>
</div>
</section>
<?php endwhile;
endif; ?>
</article>
</main>
<?php cta(); // CTA
?>
</div>
<?php get_footer();