-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpage.php
More file actions
28 lines (28 loc) · 960 Bytes
/
page.php
File metadata and controls
28 lines (28 loc) · 960 Bytes
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
<?php get_header(); ?>
<main id="content" class="site-main">
<article class="l-post">
<?php
get_template_part('template-parts/block/hero', '', [
'class' => 'hero--small',
'title' => get_the_title(),
'description' => base_posted_on(true, true, true),
]);
?>
<div class="container container--narrow">
<div class="l-post__inner">
<div class="l-post__content">
<div class="post-content">
<?php
while (have_posts()) :
the_post();
the_content();
endwhile;
?>
</div>
</div>
</div>
</div>
</article>
</main>
<?php
get_footer();