-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
41 lines (37 loc) · 1.89 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Minehut API Documentation</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<link rel="stylesheet" href="./css/style.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
</head>
<body>
<nav class="navbar sticky-top navbar-dark bg-darky">
<div class="navbar-brand">
<svg viewBox="0 0 307.29 228.28" height="30px" width="30px" preserveAspectRatio="xMidYMid meet" class="align-middle">
<polygon class="logo" points="127.81 89.01 292.91 89.01 307.29 74.63 232.65 0 154.02 0 153.26 0 74.63 0 0 74.63 71.09 145.73 127.81 89.01"></polygon>
<polygon class="logo" points="148.09 119.42 96.44 171.07 153.64 228.28 262.5 119.42 148.09 119.42"></polygon>
</svg>
<input type="text" class="form-control-sm ml-3 align-middle" placeholder="Search for..." id="search" onkeyup="filter()">
</div>
</nav>
<div class="container-fluid">
<div class="row mt-5">
<div class="col"></div>
<div class="col-md-8 col-xl-6 col-sm-12" id="content">
<h2 class="text-muted text-center" style="display: none" id="no-results">No results</h2>
</div>
<div class="col"></div>
</div>
</div>
<script src="./js/docs.js"></script>
<script src="./js/app.js"></script>
</body>
</html>