This repository has been archived by the owner on May 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
96 lines (93 loc) · 5.19 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Ukraine at War with Russia: Situation Map</title>
<meta name="author" content="Yuri Koval'ov">
<meta name="description" content="An archive of images published by National Security and Defense Council of Ukraine on the progress of war with Russia (dubbed 'Anti-Terrorist Operation')">
<meta name="keywords" content="Ukraine, war, Russia, ATO">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta content="summary" name="twitter:card" />
<meta content="Ukraine at War with Russia: Situation Map" name="twitter:title" />
<meta content="An archive of images published by National Security and Defense Council of Ukraine on the progress of war with Russia (dubbed 'Anti-Terrorist Operation')" name="twitter:description" />
<meta content="Ukraine at War with Russia: Situation Map" property="og:title" />
<meta content="https://yurikoval.github.io/ATO-progress" property="og:url" />
<meta content="An archive of images published by National Security and Defense Council of Ukraine on the progress of war with Russia (dubbed 'Anti-Terrorist Operation')" property="og:description" />
<link rel="stylesheet" type="text/css" href="//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.4/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.4/css/bootstrap-theme.min.css">
<link rel="stylesheet" type="text/css" href="//cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.4.0/css/bootstrap-datepicker3.min.css">
<style type="text/css">
#image {
width: 100%;
}
.description {
font-size: 0.9em;
font-weight: normal;
}
.loading-indicator {
font-weight: bold;
font-size: 2em;
}
</style>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-37395795-1', 'auto');
ga('send', 'pageview');
</script>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-sm-12">
<h1>Ukraine at War with Russia: Situation Map</h1>
<p class="description">Russia invades Ukraine under disguise of 'civil unrest.' Weapons are supplied by Russia to terrorists and Russian soldiers in the East (which resulted in <a href="http://www.forbes.com/sites/paulroderickgregory/2015/01/12/new-study-on-the-shooting-down-of-mh17-points-to-russian-forces/" target="_blank">downing of Malaysian MH17 airplane</a>), who continue to terrorize the local population. In defense, Ukraine is forced to unofficially go to war with Russia, labeling it the 'Anti-Terrorist Operation'. This is an archive of images published by National Security and Defense Council of Ukraine. <a href="http://blog.yurikoval.com/ukraine-anti-terrorist-operation-progress-in-gif/">Progress in GIF format</a> is also available.</p>
</div>
</div>
<div class="row" style="margin-bottom: 15px;">
<div class="col-md-3 col-sm-4">
<div class="input-group">
<div class="input-group-btn">
<button class="btn btn-default" data-bind="click: showPrevious, enable: $data.showPreviousEnabled">
<i class="glyphicon glyphicon-circle-arrow-left"></i>
</button>
</div>
<input class="form-control text-center" id="date" data-bind="value: current_image().date.toString()">
<div class="input-group-btn">
<button class="btn btn-default" data-bind="click: showNext, enable: $data.showNextEnabled">
<i class="glyphicon glyphicon-circle-arrow-right"></i>
</button>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-12">
<!-- ko if: imageIsLoading -->
<p class="loading-indicator">Loading...</p>
<!-- /ko -->
<!-- ko ifnot: imageIsLoading -->
<img data-bind="attr: {src: current_image().path}" id="image">
<!-- /ko -->
</div>
</div>
<footer class="row" style="margin-top: 15px; margin-bottom: 15px;">
<div class="col-sm-12">
<small class="pull-right">
<a href="http://www.yurikoval.com/about" target="_blank">@yuri_koval</a>
-
<a href="https://github.com/yurikoval/ATO-progress" target="_blank">Contribute</a>
</small>
</div>
</footer>
</div>
<script src="//cdnjs.cloudflare.com/ajax/libs/knockout/3.3.0/knockout-min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.4/js/bootstrap.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.4.0/js/bootstrap-datepicker.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery.imagesloaded/3.1.8/imagesloaded.pkgd.min.js"></script>
<script src="js/gallery.js"></script>
</body>
</html>