This repository has been archived by the owner on Feb 10, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbooking.php
107 lines (93 loc) · 4.52 KB
/
booking.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
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!DOCTYPE html>
<html lang="en">
<head>
<?php
/* Needed to load most recent blog posts */
define('WP_USE_THEMES', false);
require('./blog/wp-blog-header.php');
require('./api/config/functions.php');
?>
<title>WSBF-FM Clemson | Booking</title>
<script src="js/libs/pace/pace.min.js"></script>
<?php include('views/fragments/styles.html'); ?>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div id="wrapper">
<!-- LazyJaxDavis start -->
<div class="page-wrapper">
<section class="banner">
<?php include('views/fragments/nav_main.php'); ?>
<div class="header">
<div class="clearfix">
<div class="container slider-container">
<div class="row">
<div>
<div class="in-page col-md-8">
<div class="col-md ">
<h2 class="page-head">Booking Information</h2>
<hr>
<div id="in-page-content">
<p>If you are looking to play in a WSBF event, email <a href="mailto:[email protected]">[email protected]</a>. In your email, please include the following:</p>
<p><strong>Subject: Your group/act name<br/>
Body:<br/>
Your genre<br/>
Home town<br/>
Website<br/>
A link to a live performance video<br/>
Any other information you deem relevant</strong></p>
<p>You should receive a follow up email letting you know that your information has been received and you have been added to our database.</p>
<p>NOTE - due to WSBF being a part of Clemson University, there is an extensive process that goes into booking shows. If a show is already announced, there will be no additions unless you are playing for free.</p>
</div>
</div>
</div>
<div class="col-md-4 ">
<div class="grid2">
<?php include('views/fragments/playlist.home.php'); ?>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="content" id="lazyjaxdavisroot">
<div class="container">
<div class="row media">
<div class="col-md-4">
<div class="grid1">
<?php include('views/fragments/schedule.home.php'); ?>
</div>
</div>
<div class="col-md-4">
<div class="grid2">
<?php include('views/fragments/chart.home.php'); ?>
</div>
</div>
<div class="col-md-4">
<div class="grid3">
<?php include('views/fragments/socialstream.home.php'); ?>
</div>
</div>
</div>
<div class="row blog">
<?php include('views/fragments/blogpreview.home.php'); ?>
</div>
</div>
</section>
<section id="footer">
<div class="overlay clearfix">
<?php include('views/fragments/footer.home.php'); ?>
</div>
</section>
</div>
<!-- LazyJaxDavis end -->
</div>
<?php include('views/fragments/mediawidget.php'); ?>
<?php include('views/fragments/libraries.html'); ?>
<?php include('views/fragments/page.dialog.html'); ?>
<!-- Button trigger modal -->
</body>
</html>