credits.php
2.78 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<?php
session_start();
require_once 'classes/realops.php';
$get = new Get();
$stats = new Stats();
date_default_timezone_set('Australia/Sydney');
?>
<!DOCTYPE html>
<html lang="en">
<head>
<?php include 'sections/header.php'; ?>
</head>
<body>
<div class="wrapper">
<?php include 'sections/navbar.php' ?>
<div class="container" id="realops-container">
<div class="row">
<article class="col-sm-12 panel panel-default" id="realops-body">
<img src="snl.jpg" style="max-width:550px; width:100%; text-align:center;" /><br /><br />
<div class="jumbotron">
<div class="container">
<div class="row">
<div class="col-md-12">
<h3>Thank you to the following who played a major part in creating this event!</h3>
<div class="row">
<div class="col-sm-4">
<strong>Schedules:</strong>
</div>
<div class="col-sm-8">
<ul>
<li>Trent Hopkinson</li>
<li>James Thomson</li>
<li>Nathan Opresnik</li>
<li>Josh Monteforte</li>
</ul>
</div>
</div>
<hr>
<div class="row">
<div class="col-sm-4">
<strong>Event Coordinator:</strong>
</div>
<div class="col-sm-8">
<ul>
<li>Hayden McClure</li>
</ul>
</div>
</div>
<hr>
<div class="row">
<div class="col-sm-4">
<strong>Website Developets:</strong>
</div>
<div class="col-sm-8">
<ul>
<li>Hayden McClure</li>
<li>David Zhong</li>
</ul>
</div>
</div>
<hr>
<div class="row">
<div class="col-sm-4">
<strong>Prizes:</strong>
</div>
<div class="col-sm-8">
<ul>
<li>George from FlyTampa<br />
</ul>
</div>
</div>
<hr>
<div class="row">
<div class="col-sm-4">
<strong>VATPAC Director of Events and Communications: </strong>
</div>
<div class="col-sm-8">
<ul>
<li>Tracy Shiffman</li>
</ul>
</div>
</div>
<hr>
<div class="row">
<div class="col-sm-4">
<strong>VATPAC Operations Department: </strong>
</div>
<div class="col-sm-8">
<ul>
<li>David Zhong</li>
<li>Kurt D'Amico</li>
</ul>
</div>
</div>
<span style="font-style:italic;">We also thank all the pilots, controllers, and virtual airlines for their participation to make this a fun event for all.</span>
</div>
</article>
</div></div><!-- /.row -->
</div><!-- /.container -->
</div><!-- /.wrapper -->
<?php include 'sections/footer.php'; ?>