-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsingle-menus.php
More file actions
37 lines (22 loc) · 772 Bytes
/
Copy pathsingle-menus.php
File metadata and controls
37 lines (22 loc) · 772 Bytes
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
<?php
/**
* The template for displaying all single promotions posts and attachments
*
* @package understrap
*/
get_header();
?>
<?php include(get_template_directory() . '/inc/gallery-slider.php'); ?>
<div class="wrapper" id="full-width-page-wrapper">
<div class="container" id="content">
<div class="col-md-12 content-area" id="primary">
<main class="site-main" id="main" role="main">
<?php the_breadcrumb(); ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'loop-templates/content', 'menu' ); ?>
<?php endwhile; // end of the loop. ?>
</main><!-- #main -->
</div><!-- #primary -->
</div><!-- Container end -->
</div><!-- Wrapper end -->
<?php get_footer(); ?>