-
Notifications
You must be signed in to change notification settings - Fork 0
/
page.php
24 lines (20 loc) · 838 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
<?php get_header() ?>
<?php if( have_posts() ): while( have_posts() ): the_post(); include('variables.php'); ?>
<div class="lux" data-direction="top" data-height="33vh">
<div class="lux-bg" style="background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), url('<?php echo $thumbnail_image ?>');"></div>
<div class="d-flex flex-row text-light" style="height: 33vh;">
<div class="col-md-10 p-4 bd-highlight align-self-center text-uppercase">
<h1 class="display-1 fw-bold"><?php the_title() ?></h2>
<h3><?php echo bloginfo('sitename') ?></h3>
</div>
</div>
</div>
<div class="bg-light text-dark">
<div class="container mw-lg py-5">
<div class="page-content pb-4" role="main">
<?php echo get_the_content() ?>
</div>
</div>
</div>
<?php endwhile; endif; ?>
<?php get_footer() ?>