-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsingle-event.php
More file actions
34 lines (27 loc) · 887 Bytes
/
single-event.php
File metadata and controls
34 lines (27 loc) · 887 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
<?php
/**
* The Template for displaying all single events.
*/
get_header(); ?>
<div class="clear"></div>
</header> <!-- / END HOME SECTION -->
<div id="content" class="site-content single-event">
<div class="container">
<div class="content-left-wrap col-md-3">
<?php while ( have_posts() ) : the_post();
get_template_part( 'content', 'event_meta' );
echo '</div>';
echo '<div class="content-left-wrap col-md-6">';
echo '<div id="primary" class="content-area">';
echo '<main id="main" class="site-main" role="main">';
get_template_part( 'content', 'event' );
//openlab_post_nav();
endwhile; // end of the loop. ?>
</main><!-- #main -->
</div><!-- #primary -->
</div>
<div class="sidebar-wrap col-md-3 content-left-wrap">
<?php get_sidebar(); ?>
</div><!-- .sidebar-wrap -->
</div><!-- .container -->
<?php get_footer(); ?>