-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
85 lines (77 loc) · 3.95 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
<html>
<head>
<title>Q-AMeLiA | Computer Vision Searchengine</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/css/datatables.min.css">
<link rel="stylesheet" href="assets/css/font-awesome.min.css">
<link rel="stylesheet" href="assets/css/custom.css">
</head>
<body>
<nav class="navbar navbar-expand-md navbar-light bg-light">
<div class="container-fluid">
<div>
<a class="navbar-brand navbar-brand-big" href="#">
<img src="assets/images/qamelia.svg" alt="Q-AMeLiA">
Computer Vision Searchengine
</a>
</div>
<form>
<div class="input-group">
<span class="input-group-text" id="basic-addon1"><i class="fa fa-search"
aria-hidden="true"></i></span>
<input type="text" class="form-control" placeholder="Search" aria-label="Search" id="tablesearch"
aria-describedby="Search">
</div>
</form>
<div class="multi-brands">
<a class="navbar-brand" href="#">
<img src="assets/images/hso.svg" alt="Offenburg University of Appleid Sciences">
</a>
<a class="navbar-brand" href="#">
<img src="assets/images/hka.svg" alt="Karlsruhe University of Appleid Sciences">
</a>
<a class="navbar-brand" href="#">
<img src="assets/images/hfu.svg" alt="Furtwangen University of Appleid Sciences">
</a>
</div>
</div>
</nav>
<div class="container-fluid">
<table id="table" class="table table-striped" style="width:100%"></table>
</div>
<footer class="page-footer bg-light text-center p-4">
<div class="alert alert-warning" role="alert">
We provide the information on an "as-is" basis and make no warranties regarding any information or licenses
provided on or through this website, and disclaim liability for damages resulting from using the license
information.<br />
If you have any questions regarding the license for a model or any other legal issues relating to it, it’s
always best to consult with the maintainer or other professionals.
</div>
</div>
<div class="text-center p-3">
<p>Funded by the:</p>
<img src="assets/images/mwk.png" height=70 alt="Ministerium für Wissenschaft, Forschung und Kunst" />
</div>
<div class="text-center p-3">
© Copyright 2022: Offenburg University of Applied Sciences, Karlsruhe University of Applied Sciences,
Furtwangen University of Applied Sciences. See our
<a class="text-dark" href="https://q-amelia.in.hs-furtwangen.de/q-amelia-in-hs-furtwangen-de/">
Imprint & Privacy Notice</a>.
<br />
Note: When a GitHub Pages site is visited, the visitor's IP address is logged and stored for security
purposes, regardless of whether the visitor has signed into GitHub or not. Read the
<a class="text-dark"
href="https://docs.github.com/en/site-policy/privacy-policies/github-privacy-statement">
GitHub Privacy Statement</a>.
</div>
</footer>
<!-- Placed at the end of the document so the pages load faster -->
<script type="text/javascript" src="assets/js/jquery.js"></script>
<script type="text/javascript" src="assets/js/datatables.js"></script>
<script type="text/javascript" src="assets/js/datatables_bootstrap5.js"></script>
<script type="text/javascript" src="model_db.js"></script>
<script type="text/javascript" src="assets/js/create_table.js"></script>
</body>
</html>