summaryrefslogtreecommitdiff
path: root/pages/live.php
blob: 9b0dd89317ae3521ac9353cf8deff382dfa693ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<div class="header">
  <div class="header_live">
    <div class="header_text">Live Shows</div>
  </div>
</div>
<?php

include_once($UTIL_DIR."/events.php");

$events = new Events($DATA_DIR."/events.xml");
?>
<div class="small_header">Upcoming shows</div>
<div class="shows">
<?php
$events->showcoming(-1);
?>
</div>
<div class="small_header">Previous shows</div>
<div class="shows">
<?php 
$events->showold(-1);
?>
</div>