This repository has been archived by the owner on Jun 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
categories.html
96 lines (84 loc) · 3.54 KB
/
categories.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
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./theme/css/foundation.min.css" media="all">
<script type="text/javascript" src="./theme/js/modernizr.js"></script>
<link href='https://fonts.googleapis.com/css?family=Exo+2:400,300,700,300italic,400italic,700italic,900,900italic' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="./theme/css/lamboz.css" media="all">
<title>Airsoft Dnipro Fest - Categories </title>
<meta charset="utf-8" />
</head>
<body>
<div class="main-menu">
<div id="sitelinks">
<a href="/"><img src="/theme/img/home.svg" width="25px" height="25px" alt="Головна"></a>
<a href="/operation-bifrost.html">Гра</a>
<a href="/pages/rules.html">Правила</a>
<a href="/pages/gallery.html">Галерея</a>
<a href="/pages/faq.html">ЧаПи</a>
<a href="https://goo.gl/forms/PdponXJnNLbRJ6SA3">Реєстрація</a>
</div>
<div id="soclinks">
+38 067 755 2517
<a href="mailto:airsoftdniprofest@gmail.com">airsoftdniprofest@gmail.com</a>
<a href="https://www.facebook.com/groups/1459651380759788/"><img src="/theme/img/facebook.svg" width="30px"></a>
<a href="https://www.youtube.com/channel/UCQi7BX7zyv_HGt4vx9HaSUA"><img src="/theme/img/youtube.svg" width="30px"></a>
<a href="https://www.instagram.com/airsoft_fest"><img src="/theme/img/instagram.svg" width="30px"></a>
</div>
</div>
<div class="hp-header">
<div class="page-header">
<div class="content-header">
<div id="title-block">
<p class="blurb"><img src="/images/logo.png"></p>
</div>
</div>
</div>
</div>
<div class="content">
<div class="data-holder">
<div class="row">
<div class="large-12 content-column column">
<h1>Categories for Airsoft Dnipro Fest</h1>
<ul class="tag-list"> <li><a href="./category/2018.html">2018</a> (5)</li>
</ul>
</div>
</div>
</div>
</div>
<div class="bottom-menu">
<div id="timer">
<p id="countdown"></p>
</div>
<div id="trademark">
© 2018 ADF Team
</div>
</div>
<script>
// Set the date we're counting down to
var countDownDate = new Date("Sep 22, 2018 10:00:00").getTime();
// Update the count down every 1 second
var x = setInterval(function() {
// Get todays date and time
var now = new Date().getTime();
// Find the distance between now and the count down date
var distance = countDownDate - now;
// Time calculations for days, hours, minutes and seconds
var days = Math.floor(distance / (1000 * 60 * 60 * 24));
var hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
var minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
var seconds = Math.floor((distance % (1000 * 60)) / 1000);
// Output the result in an element with id="demo"
document.getElementById("countdown").innerHTML = "Початок через: " + days + ":" + ("0" +hours).slice(-2) + ":"
+ ("0"+ minutes).slice(-2) + ":" + ("0"+seconds).slice(-2);
// If the count down is over, write some text
if (distance < 0) {
clearInterval(x);
document.getElementById("countdown").innerHTML = "EXPIRED";
}
}, 1000);
</script>
</body>
</html>