forked from matas70/matas
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpress.html
More file actions
125 lines (111 loc) · 4.78 KB
/
press.html
File metadata and controls
125 lines (111 loc) · 4.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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<!DOCTYPE html>
<html>
<head>
<title>יום העצמאות 73 למדינת ישראל - מידע על אירועי חיל האוויר</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
<meta charset="utf-8">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="mobile-web-app-capable" content="yes">
<link rel="stylesheet" href="css/press.css">
<link rel="stylesheet" href="css/hamburgers.css">
<link rel="icon" sizes="192x192" href="icons/android_icon.png">
<link rel="apple-touch-icon" sizes="192x192" href="icons/ios_icon.png">
<link rel="stylesheet" href="js/leaflet/leaflet.css"/>
<link rel="stylesheet" href="css/jquery-ui.css">
<script src="js/jquery.min.js"></script>
<script src="js/jquery-ui.min.js"></script>
<script src="js/jquery.mobile-events.js"></script>
<link rel="manifest" href="manifest.json">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-98360124-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-98360124-1');
</script>
<script>
function press_load() {
$.when(
$.getScript("js/date.js"),
$.getScript("js/utils.js"),
$.getScript("js/functions.js"),
$.getScript("js/press.js"),
$.Deferred(function( deferred ){
$( deferred.resolve );
})
).done(function(){
initPressPage();
});
}
</script>
</head>
<body class="press-body" onload="press_load()">
<!-- page header -->
<header>
<div class="press-header">
<div style="display: flex; align-items: center; flex: 1;justify-content: center;">
<img class="iaf-logo" src="icons/air_force.svg">
<a href="https://matas.iaf.org.il" target="_blank" style="text-decoration: none">
<div id="goto-press-button">
<span id="goto-press-text">מפת מטוסים</span>
<img id="goto-press-icon" src="icons/location-on-map.svg">
</div>
</a>
</div>
<img class="main-logo" src="icons/bigLogo73.svg">
<div style="flex: 1; display: flex; justify-content: center;">
<img class="idf-logo" src="icons/press/idf.png">
</div>
</div>
</header>
<div class="main-content">
<div id="qrdiv">
<a class="qrlink" href="https://matas.iaf.org.il" target="_blank"><img class="qrcode" src="icons/qr-code.png"></a>
<div id="qrdivtext">
<h2 style="
margin: 0px 0px;
font-weight: 600;
font-size: 14px;
line-height: 17px;
">רוצים לראות את המטס על המפה?</h2>סרקו את הקוד והיכנסו לאפליקציית המטס כדי לראות
<br>
את כל נתיבי המטס, ואת מיקום המטוסים בזמן אמת!
</div>
</div>
<div id="base-container" style="display: none">
<div class="main-title">
<div class="title-decoration"></div>
<div class="title-text">בסיסים</div>
<div class="title-decoration"></div>
</div>
<div class="base-table-list"><img src="animation/loading.gif" class="loading"></div>
</div>
<div id="hospital-container">
<div class="main-title">
<div class="title-decoration"></div>
<div class="title-text">נקודות תצפית</div>
<div class="title-decoration"></div>
</div>
<div id="hospital-table-list" class="city-table-list"><img src="animation/loading.gif" class="loading"></div>
</div>
<div id="city-container">
<div class="main-title">
<div class="title-decoration"></div>
<div class="title-text">ישובים</div>
<div class="title-decoration"></div>
</div>
<div id="city-table-list" class="city-table-list"><img src="animation/loading.gif" class="loading"></div>
</div>
</div>
<p style="text-align: center;">ועוד נקודות תצפית רבות לאורך הנתיב המפורטות באפליקציה</p>
<footer class="footer">
<img class="aerobatic-footer-icon" src="icons/aerobatic.png">
<div class="footer-text">
מופע אווירובטי | לפרטים מלאים על כל הישובים והערים בהם יעבור המטס היכנסו לאתר המטס מהמכשיר הסלולרי
</div>
</footer>
</body>
</html>