index.php
4.75 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
<?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">
<h1>RealOps Sydney 2015</h1>
<h2>11 July 2015 — 04:00 to 12:00 UTC</h2>
<section class="row" id="realops-quick-stats">
<div class="col-md-6">
<div class="icon fa fa-map-marker"></div>
<div class="realops-quick-info">Sydney Airport</div>
</div>
<div class="col-md-6">
<div class="icon fa fa-microphone"></div>
<div class="realops-quick-info">30+ ATC Shifts</div>
</div>
<div class="col-md-6">
<div class="icon fa fa-arrow-up"></div>
<div class="realops-quick-info">124 Departures</div>
</div>
<div class="col-md-6">
<div class="icon fa fa-arrow-down"></div>
<div class="realops-quick-info">142 Arrivals</div>
</div>
</section>
<section id="realops-index-copy">
<p>For eight hours in July, VATPAC invites <strong>you</strong> to join us in recreating the chaos at Sydney Airport!</p>
<p>Sydney Kingsford-Smith International Airport is the busiest airport in Australia by passenger volume and features the <strong>longest runway</strong> in the Australia.</p>
<p>Up for grabs is a <strong>FlyTampa scenery</strong> for the pilot that operates the most movements, then judged by the closest adherence to the allocated slot times. We appreciate FlyTampa's support of RealOps 2015.</p>
<p>Over <strong>250 flights</strong> have been loaded into our state-of-the-art bookings system, right here on this website, with a fantastic mix of international, domestic and regional flights and a diverse range of operators to choose from.</p>
<p>The fun doesn't stop there – with over <strong>30 ATC shifts</strong> over eight hours, there is surely someting for everyone.</p>
<p>There will be plenty of traffic, so make sure to bring plenty of extra fuel and brush up on your holding patterns just in case.</p>
<p>For the first time in RealOps history, Virtual Airlines will also play a major part in this event. Gather up all your pilots to reach the top of the ladder! The leading virtual airline gets their advertisement at the top of the ladder page.</p>
<div class="col-md-6" style="padding:0;">
<p><a href="http://www.timeanddate.com/worldclock/fixedtime.html?msg=RealOps+Sydney&iso=20150711T04&ah=6" target="_blank"><em>Find event times in your local time zone</em></p>
<p><a href="slots.php" class="btn btn-default">Book a flight</a> <a href="atcApply.php" class="btn btn-default">Register to provide ATC</a> <a href="competition.php" class="btn btn-default">Competition Information</a></p>
</div>
<div class="col-md-6" style="padding:0;">
<div class="purchaseBanner" style="">
<a href="http://www.flytampa.org/order.html" class="btn btn-primary purchaseLargeButtons" style="margin-left:15px; margin-top:70px; display:none;" target="_blank">Purchase on FlyTampa</a>
<a href="http://secure.simmarket.com/flytampa-sydney.phtml" class="btn btn-primary purchaseLargeButtons" style="margin-right:15px; margin-top:70px; float:right; display:none;" target="_blank">Purchase on SimMarket</a>
<a href="http://www.flytampa.org/order.html" class="btn btn-primary purchaseSmallButtons" style="margin-left:15px; margin-top:33px; display:none;" target="_blank">FlyTampa</a>
<a href="http://secure.simmarket.com/flytampa-sydney.phtml" class="btn btn-primary purchaseSmallButtons" style="margin-right:15px; margin-top:33px; float:right; display:none;" target="_blank">SimMarket</a>
</div>
</div>
</section>
</article>
</div><!-- /.row -->
</div><!-- /.container -->
</div><!-- /.wrapper -->
<?php include 'sections/footer.php'; ?>