-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlive.php
More file actions
25 lines (25 loc) · 868 Bytes
/
live.php
File metadata and controls
25 lines (25 loc) · 868 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
<?php require('head.php'); ?>
<div class="inner cover">
<p class="lead">
<a href="/external" class="btn btn-lg btn-play">
<img src="assets/img/swoosh.png"><br />
<i class="playpause glyphicon glyphicon-play-circle"></i> <span class="playtext">Tune in</span>
</a><br />
<span class="metadata"></span>
</p>
</div>
<?php if(!isset($_GET['contentonly'])) {?>
</span>
</div>
</div>
</div>
<?php require("foot.php"); ?>
<script type="text/javascript">
$(document).ready(function() {
uwave.player.play();
uwave.navigateTo("/");
});
</script>
</body>
</html>
<?php } ?>