-
Notifications
You must be signed in to change notification settings - Fork 1
/
tag.php
40 lines (38 loc) · 1.15 KB
/
tag.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
<?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 our-beer">
<div class="row">
<div class="container-fluid">
<div class="alert alert-warning mt-3">
<h1 class="text-uppercase text-center">
<?php printf( __( 'Content Tagged With: %s', 'crafted_brew' ), '<span>' . get_search_query() . '</span>' ); ?>
<em>“<?php single_tag_title(); ?>”</em>
</h1>
</div>
</div>
</div>
<div class="row mt-5">
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div class="col-md-12 mb-4">
<main>
<h1>
<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>">
<?php the_title(); ?>
</a>
</h1>
<div class="text-white">
<?php the_excerpt(); ?>
</div>
<hr />
</main>
</div>
<?php endwhile; else : ?>
<p><?php esc_html_e( 'Sorry, no posts matched your criteria.' ); ?></p>
<?php endif; ?>
<div class="col">
<?php echo crafted_brew_pagination(); ?>
</div>
</div>
</div>
</div>
<?php get_footer(); ?>