-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
142 lines (110 loc) · 4.68 KB
/
index.html
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
<!DOCTYPE HTML>
<html>
<head>
<!-- Maybe a challenge will appear here for early ticket access, who knows... -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="author" content="Abertay Ethical Hacking Society">
<title>Securi-Tay 2019</title>
<link type="text/css" rel="stylesheet" href="css/bootstrap.min.css" />
<link type="text/css" rel="stylesheet" href="css/styles.css" />
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.4.1/css/all.css" integrity="sha384-5sAR7xN1Nv6T6+dT2mhtzEpVJvfS3NScPQTrOxhwjIuvcA67KV2R5Jz6kr4abQsz" crossorigin="anonymous">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-118823811-3"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-118823811-3');
</script>
</head>
<body class="content">
<header id="home">
<div class="home-wrapper">
<div class="container">
<div class="row">
<div class="home-content">
<br><br>
<img src="img/logo.png" id="logo"/>
<br>
<h1>Friday 1st March 2019</h1>
<br>
<!-- Countdown Timer -->
<div class="d-none d-lg-block">
<div class="row">
<div class="card col-md-2 mx-auto text-center">
<p class="card-header text-muted">Days</p>
<div class="card-body">
<div id="days" class="countdown"></div>
</div>
</div>
<div class="card col-md-2 mx-auto text-center">
<h6 class="card-header text-muted">Hours</h6>
<div class="card-body">
<div id="hours" class="countdown"></div>
</div>
</div>
<div class="card col-md-2 mx-auto text-center">
<h6 class="card-header text-muted">Minutes</h6>
<div class="card-body">
<div id="minutes" class="countdown"></div>
</div>
</div>
<div class="card col-md-2 mx-auto text-center">
<h6 class="card-header text-muted">Seconds</h6>
<div class="card-body">
<div id="seconds" class="countdown"></div>
</div>
</div>
</div>
</div>
<!-- End Timer -->
<br><br>
<div class="row">
<div class="card bg-purp">
<div class="card-body">
<p class="card-text text-white">
Once again, the Abertay Ethical Hacking Society will be hosting our annual conference, Securi-Tay!<br>Now in its 8th year, we're aiming for it to be its biggest ever.<br>
Keep an eye on <a href="https://www.twitter.com/abertayhackers">@AbertayHackers</a> for more info!
</p>
<div class="row">
<div class="col-md-12">
<a href="https://airtable.com/shrQFx5XvbcyepXml" class="btn my-btn btn-block">Call for Papers</a>
<a href="cfs.pdf" class="btn my-btn btn-block">Call for Sponsors</a>
</div>
</div>
<div class="row">
<div class="col-md-12">
<a href="https://www.eventbrite.com/e/securi-tay-2019-tickets-53649018659?aff=Website" class="btn my-btn btn-block">Tickets</a>
</div>
</div>
</div>
</div>
</div>
<br>
<div class="social d-flex justify-content-center">
<a href="https://twitter.com/abertayhackers" class="mx-2">
<i class="fab fa-twitter"></i>
</a>
<a href="https://www.facebook.com/AbertayHackers/" class="mx-2">
<i class="fab fa-facebook-f"></i>
</a>
<a href="https://github.com/AbertayHackers" class="mx-2">
<i class="fab fa-github"></i>
</a>
<a href="https://www.youtube.com/c/AbertayHackers" class="mx-2">
<i class="fab fa-youtube"></i>
</a>
</div>
</div>
</div>
</div>
</div>
</header>
<script src="js/script.js"></script>
</body>
<!-- Created by Ross Donald with the input of many others correcting my terrible UI / UX web skills -->
<!-- Visit www.hacksoc.co.uk for more ;) -->
<!-- For some reason Dylan wanted to say he contributed, so here's his wee comment to show his effort wasn't lost -->
</html>