-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbook-space.php
More file actions
35 lines (30 loc) · 1.06 KB
/
Copy pathbook-space.php
File metadata and controls
35 lines (30 loc) · 1.06 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
<?php
/*
Template Name: Book Your Space
*/
get_header(); ?>
<!-- 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>Book Your Space</h2>
<ol class="wpo-breadcumb-wrap">
<li><a href="https://stackandhustle.com/">Home</a></li>
<li>Book Your Space</li>
</ol>
</div>
</div>
</div> <!-- end row -->
</div> <!-- end container -->
</section>
<!-- end page-title -->
<!-- BookingPress Form Section -->
<section class="bookingpress-section py-5">
<div class="container">
<?php echo do_shortcode('[bookingpress_form]'); ?>
</div>
</section>
<!-- End BookingPress Form Section -->
<?php get_footer(); ?>