-
Notifications
You must be signed in to change notification settings - Fork 0
/
page.php
41 lines (40 loc) · 997 Bytes
/
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
41
<?php
/**
* Page Template
* @package storyHub-alter
*/
get_header();
?>
<main>
<div class="container-xl mt-10 page__content">
<div class="container mx-auto">
<h1 class="page__header">
<?php
single_post_title();
?>
<?php
bloginfo('title');
?>
</h1>
<?php
if (have_posts()):
while (have_posts()):the_post();
?>
<div class="featured__image">
<?php the_post_custom_thumbnail(get_the_ID(), 'post-thumbnail', []); ?>
</div>
<div class="content__Page mx-auto">
<?php
the_content();
?>
</div>
<?php
endwhile;
endif;
?>
</div>
</div>
</main>
<?php
get_footer();
?>