-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsingle-events.php
More file actions
91 lines (81 loc) · 3.75 KB
/
Copy pathsingle-events.php
File metadata and controls
91 lines (81 loc) · 3.75 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<?php
get_header();
if (have_posts()) :
while (have_posts()) : the_post(); ?>
<!-- start wpo-page-title -->
<section class="wpo-page-title">
<div class="container">
<div class="row">
<div class="col col-xs-12">
<div class="wpo-breadcumb-wrap">
<h2><?php the_title(); ?></h2>
<ol class="wpo-breadcumb-wrap">
<li><a href="<?php echo home_url(); ?>">Home</a></li>
<li>Events</li>
</ol>
</div>
</div>
</div>
</div>
</section>
<!-- end page-title -->
<!-- start event-single-section -->
<section class="wpo-shop-single-section section-padding">
<div class="container">
<div class="row">
<!-- Featured Image / Gallery -->
<div class="col col-lg-6 col-12">
<div class="shop-single-slider">
<div class="slider-for">
<?php if (has_post_thumbnail()) : ?>
<div><?php the_post_thumbnail('large', ['class' => 'img-fluid']); ?></div>
<?php endif; ?>
</div>
</div>
</div>
<!-- Event Content -->
<div class="col col-lg-6 col-12">
<div class="product-details">
<h2><?php the_title(); ?></h2>
<div class="product-rt">
<span><?php echo get_the_date('F j, Y'); ?></span>
</div>
<div class="event-content">
<?php the_content(); ?>
</div>
<div class="submit-area">
<a href="https://stackandhustle.com/book-space/" class="theme-btn">Register</a>
</div>
</div>
</div>
</div>
<!-- Tabs (Description / Reviews) -->
<div class="row">
<div class="col col-xs-12">
<div class="product-info">
<ul class="nav nav-tabs" id="myTab" role="tablist">
<li class="nav-item" role="presentation">
<a class="nav-link active" id="Description-tab" data-bs-toggle="tab"
href="#Description" role="tab">Description</a>
</li>
<li class="nav-item" role="presentation">
<a class="nav-link" id="Review-tab" data-bs-toggle="tab"
href="#Review" role="tab">Review</a>
</li>
</ul>
<div class="tab-content">
<div role="tabpanel" class="tab-pane active" id="Description">
<?php the_content(); ?>
</div>
<div role="tabpanel" class="tab-pane" id="Review">
<?php comments_template(); ?>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<?php endwhile;
endif;
get_footer();