-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
107 lines (100 loc) · 6.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Custom CSS -->
<link rel="stylesheet" href="assets/css/overrides.css">
<link rel="stylesheet" href="assets/css/custom.css">
<!-- Library CSS -->
<link rel="stylesheet" href="node_modules/bootstrap-icons/font/bootstrap-icons.css">
<title>Document</title>
</head>
<body>
<!-- Navbar -->
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<div class="container">
<a class="navbar-brand" href="#">
<img src="https://arg-tech.org/wp-content/themes/arg/images/arg-tech-w-s.png" height="34px" class="" alt="">
</a>
</div>
</nav>
<!-- Content -->
<div class="container d-flex flex-column flex-md-row justify-content-md-between py-5" style="min-height: 100vh;">
<div class="flex-column align-self-center">
<div class="align-self-center mx-auto" style="min-width: 12rem">
<!-- View Data Card -->
<a href="https://www.arg.tech/f/26171.txt" class="card bg-secondary text-white" target="_blank">
<div class="card-body">
<i class="bi fs-5 text-dark bi-info-circle float-end info" id="view-data-popover" tabindex="0" role="button" data-bs-trigger="hover focus" data-bs-toggle="popover"></i>
<div class="d-flex justify-content-center" id="raw-data" style="position: absolute; right: 0; left: 0; bottom: 0; top: 0;">
<h5 class="card-title primary my-auto">Raw Data</h5>
</div>
</div>
</a>
</div>
</div>
<div class="flex-column align-self-center">
<div class="mx-auto" style="min-width: 12rem">
<!-- View AIF Card -->
<a href="http://ova.arg-tech.org/analyse.php?url=local&aifdb=26171" class="card bg-secondary text-white mx-auto mt-5 mt-md-0" target="_blank">
<div class="card-body">
<i class="bi fs-5 text-dark bi-info-circle float-end info" id="view-aif-popover" tabindex="0" role="button" data-bs-trigger="hover focus" data-bs-toggle="popover"></i>
<div class="d-flex justify-content-center" id="ova3" style="position: absolute; right: 0; left: 0; bottom: 0; top: 0;">
<h5 class="card-title my-auto">OVA3</h5>
</div>
</div>
</a>
</div>
</div>
<div class="flex-column align-self-center">
<div class="mx-auto" style="min-width: 12rem">
<!-- Visualize Card -->
<a href="http://argnav.arg.tech/results?text=26171&iat_mode=false" class="card bg-secondary text-white mx-auto mt-5 mt-md-0" target="_blank">
<div class="card-body">
<i class="bi fs-5 text-dark bi-info-circle float-end info" id="arg-nav-popover" tabindex="0" role="button" data-bs-trigger="hover focus" data-bs-toggle="popover" title="Default: Html inside popover"></i>
<div class="d-flex justify-content-center" id="arg-nav" style="position: absolute; right: 0; left: 0; bottom: 0; top: 0;">
<h5 class="card-title my-auto">Arg-Nav</h5>
</div>
</div>
</a>
<!-- Analytics Card -->
<a href="http://www.aifdb.org/argview/26171" class="card bg-secondary text-white mt-5 mt-md-5" target="_blank">
<div class="card-body">
<i class="bi fs-5 text-dark bi-info-circle float-end info" id="analytics-popover" tabindex="0" role="button" data-bs-trigger="hover focus" data-bs-toggle="popover" title="Default: Html inside popover"></i>
<div class="d-flex justify-content-center" id="aif-db" style="position: absolute; right: 0; left: 0; bottom: 0; top: 0;">
<h5 class="card-title my-auto">AIFdb</h5>
</div>
</div>
</a>
<!-- Interrogate Card -->
<a href="http://achnav.arg.tech/results?nodesetID=26171" class="card bg-secondary text-white mx-auto mt-5 mt-md-5" target="_blank">
<div class="card-body">
<i class="bi fs-5 text-dark bi-info-circle float-end info" id="ach-nav-popover" tabindex="0" role="button" data-bs-trigger="hover focus" data-bs-toggle="popover" title="Default: Html inside popover"></i>
<div class="d-flex justify-content-center" id="ach-nav" style="position: absolute; right: 0; left: 0; bottom: 0; top: 0;">
<h5 class="card-title my-auto">ACH-Nav</h5>
</div>
</div>
</a>
<!-- Critique Card -->
<a href="http://daas-video.arg.tech/video?mapID=26171&video_url=https://www.arg.tech/f/RedTeamingMoonTrimmed.mp4" class="card bg-secondary text-white mx-auto mt-5 mt-md-5" target="_blank">
<div class="card-body">
<i class="bi fs-5 text-dark bi-info-circle float-end info" id="critique-popover" tabindex="0" role="button" data-bs-trigger="hover focus" data-bs-toggle="popover" title="Default: Html inside popover"></i>
<div class="d-flex justify-content-center" id="critique" style="position: absolute; right: 0; left: 0; bottom: 0; top: 0;">
<h5 class="card-title my-auto">Critique Player</h5>
</div>
</div>
</a>
</div>
</div>
</div>
<!-- Libraries -->
<script type="text/javascript" src="node_modules/bootstrap/dist/js/bootstrap.bundle.min.js"></script>
<script type="text/javascript" src="node_modules/jquery/dist/jquery.js"></script>
<script type="text/javascript" src="node_modules/leader-line/leader-line.min.js"></script>
<!-- Custom -->
<script type="text/javascript" src="assets/js/arrows.js"></script>
<script type="text/javascript" src="assets/js/popovers.js"></script>
</body>
</html>