-
Notifications
You must be signed in to change notification settings - Fork 0
/
page.php
31 lines (20 loc) · 848 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
<?php get_header(); ?>
<?php if (has_post_thumbnail()) : ?>
<div style="max-height: 450px; overflow: hidden;">
<img src="<?php echo get_the_post_thumbnail_url(); ?>" style="min-width: 100%; max-width: 100%;" />
</div>
<!-- <div class="" style="height: 450px; background-image: url(<?php echo get_the_post_thumbnail_url(); ?>); background-size: contain; background-repeat: no-repeat; background-position: center;"></div> -->
<?php endif; ?>
<div class="container mt-5 pb-5" style="min-height: 100vh">
<div class="row">
<div class="col wp-post">
<?php while (have_posts()) : the_post(); ?>
<h1><?php the_title() ?></h1>
<p>
<?php the_content(); ?>
</p>
<?php endwhile; ?>
</div>
</div>
</div>
<?php get_footer(); ?>