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
/
map.html
118 lines (105 loc) · 4.58 KB
/
map.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
<!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</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-inner">
<div class="page-header">
<div class="content-header">
<div id="title-block">
<h1> <a href="./map.html" rel="bookmark"
title="Permalink to Місце проведення">Місце проведення</a></h1>
</div>
</div>
</div>
</div>
<div class="content">
<div class="data-holder">
<div class="row">
<div class="large-12 content-column column">
<div class="content-article">
<header class="header-article">
<div class="read-more">Posted on вт 17 липня 2018</div>
</header>
<section class='article'>
<div class="entry-content">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3266.4990167870933!2d34.78781131601993!3d48.55801297925921!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0x0!2zNDjCsDMzJzI4LjkiTiAzNMKwNDcnMjQuMCJF!5e1!3m2!1suk!2sua!4v1533340281271" frameborder="0" width=100% height=600 style="border:0" allowfullscreen></iframe>
<h2><a href="./pages/gallery.html#"></a></h2>
<ul>
</ul>
</div>
</section>
<footer class="footer-article">
<div class="tags-and-categories">Filed under <a href="./category/2018.html">2018</a>
| Tagged: <a href="./tag/info.html">info </a><a href="./tag/2018.html">2018 </a>
| <a href="./map.html" rel="bookmark"
title="Permalink to Місце проведення">Permalink</a>
</div>
<!-- metaldata
-->
</footer>
<!-- disqus -->
</div>
</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>