This repository has been archived by the owner on Mar 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
43 lines (40 loc) · 2 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
<!DOCTYPE html>
<html lang="de">
<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">
<link rel="stylesheet" type="text/css" href="search.css"> <!-- Stylesheet SearchEngine -->
<script type="text/javascript" src="search.js" defer></script> <!-- SearchEngine Code -->
<script src="https://kit.fontawesome.com/61ad8a7123.js" crossorigin="anonymous"></script>
<title>mtkp / NEI SearchEngine</title>
</head>
<body>
<div class="description">
<p>Diese Suchfunktion ist im Auftrag von <a href="https://mtk-project.de">MTKP</a> für den <a href="https://nei.dagilp.de">LBAH-NEI Ersatz</a> entstanden</p>
<p><a href="https://github.com/MatitoDA/Search_for_Maris"><i class="fab fa-github"></i> Hier gehts zur GitHub Repo</a></p>
</div>
<div class="search-wrapper"><!-- Searchbar -->
<label for="search">Crafting Suchen</label>
<input type="search" id="search" placeholder="Suche" data-search>
</div>
<div><!-- Filter Dropdown -->
<label for="filter"></label><select id="filter" onchange="update()">
<option value="all">Alle Mods</option>
</select>
</div>
<div class="item-cards" data-item-container></div><!-- in this Div are all Cards from the items.json -->
<template data-item-template ><!-- Template doesn't need formatting -->
<div class="card">
<a data-link>
<div class="innerCard"><!-- Box with Item infos -->
<div class="header" data-header></div> <!-- Item Title -->
<div class="body" data-body></div> <!-- English Name -->
<div class="mod" data-mod></div> <!-- Mod name. -->
<div class="img"><img data-src width="50" height="50" alt="" src=""></div> <!-- Recipe Image -->
</div>
</a>
</div>
</template>
</body>
</html>