-
Notifications
You must be signed in to change notification settings - Fork 1
/
brewery.php
38 lines (38 loc) · 903 Bytes
/
brewery.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
<?php
/**
* Template Name: Brewery Pages Template
*
* @package WordPress
* @subpackage crafted-brew-wordpress-theme
*
*/
get_header(); ?>
<div class="container brewery">
<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-4 mb-4">
<figure>
<?php the_post_thumbnail('full'); ?>
</figure>
</div>
<div class="col-md-8 text-white">
<main>
<?php the_content(); ?>
<br />
<?php the_tags('<span class="badge badge-primary mr-2">Related:</span> ' , ', ', ''); ?>
</main>
</div>
</div>
<?php endwhile; else : ?>
<p><?php esc_html_e( 'Sorry, no posts matched your criteria.' ); ?></p>
<?php endif; ?>
</div>
</div>
<?php get_footer(); ?>