-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (58 loc) · 2.47 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
<!doctype html>
<html class="no-js" lang="de">
<head>
<meta charset="utf-8">
<title>digifarm.ms Projektliste</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/app.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<meta name="theme-color" content="#000000">
</head>
<body>
<div class="container-fluid">
<div class="row search-wrapper">
<div class="col-12 col-sm-5 col-md-4 col-lg-3">
<h3 class="mb-0">Filtern und Suchen</h3>
<ul class="list-group border-0">
<li class="list-group-item border-0 px-0">
<label class="form-label" for="Hilfe">Welche Hilfe wird gesucht</label>
<div id="help-select"></div>
</li>
<li class="list-group-item border-0 px-0">
<label class="form-label" for="Technologien">Technologie</label>
<div id="technology-select"></div>
</li>
<li class="list-group-item border-0 px-0">
<label class="form-label" for="Quelle">Typ</label>
<div id="type-select"></div>
</li>
<li class="list-group-item border-0 px-0">
<label class="form-label" for="Kategorie">Kategorie</label>
<div id="category-select"></div>
</li>
<li class="list-group-item border-0 px-0">
<label class="form-label" for="Komplexität">Komplexität</label>
<div id="complexity-select"></div>
</li>
<li class="list-group-item border-0 mt-2 px-0">
<button id="filter-reset-button" class="btn btn-primary">Filter zurücksetzen</button>
</li>
</ul>
</div>
<div class="col-12 col-sm-7 col-md-8 col-lg-9 mt-3 mt-sm-0 project-list-wrapper">
<h3 class="mb-3">Projekte</h3>
<div class="project-list">
</div>
</div>
</div>
</div>
<script src="js/vendor/modernizr-3.11.2.min.js"></script>
<script src="js/plugins.js"></script>
<script src="js/vendor/jquery-3.6.0.min.js"></script>
<script src="js/search.js"></script>
<script src="js/vendor/bootstrap.bundle.min.js"></script>
</body>
</html>