forked from bkaminski/crafted-brew-wordpress-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage.php
31 lines (30 loc) · 942 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(); ?>
<div class="parallax-window" data-parallax="scroll" data-image-src="<?php echo get_template_directory_uri(); ?>/lib/img/interior-bg.png">
<div class="container blue-earl-events">
<div class="row">
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<header>
<div class="col">
<h1 class="headerAlign text-white mb-5 text-uppercase"><?php the_title(); ?></h1>
</div>
</header>
</div>
<div class="row mt-5">
<div class="col-md-12 mb-4">
<figure>
<?php the_post_thumbnail( 'full', array( 'class' => 'mx-auto d-block' ) ); ?>
</figure>
<main>
<?php the_content(); ?>
<br />
<?php the_tags('<span class="badge badge-primary mr-2">Related:</span> ' , ', ', ''); ?>
</main>
<br />
</div>
</div>
<?php endwhile; else : ?>
<p><?php esc_html_e( 'Sorry, no posts matched your criteria.' ); ?></p>
<?php endif; ?>
</div>
</div>
<?php get_footer(); ?>