-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
90 lines (73 loc) · 4.03 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
<html>
<head>
<title>Old English Resources</title>
<meta charset="utf-8">
<!-- Resolve 404 (Not Found) error failed to load favicon.ico -->
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
<!-- mobile friendly -->
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!-- jquery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<!-- Bootstrap css -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<!-- Local -->
<script src="assets/js/resources.js"></script>
<script src="assets/js/resources_JSON.js"></script>
<link rel="stylesheet" href="assets/css/resources.css">
<!-- dataTables for sortable table -->
<link rel="stylesheet" href="https://cdn.datatables.net/1.10.25/css/jquery.dataTables.min.css">
<script src="https://cdn.datatables.net/1.10.25/js/jquery.dataTables.min.js"></script>
<script src="https://cdn.datatables.net/1.10.25/js/dataTables.bootstrap.min.js"></script>
<script src="https://cdn.datatables.net/fixedheader/3.1.9/js/dataTables.fixedHeader.min.js"></script>
<script src="https://cdn.datatables.net/responsive/2.2.9/js/dataTables.responsive.min.js"></script>
<script src="https://cdn.datatables.net/responsive/2.2.9/js/responsive.bootstrap.min.js"></script>
</head>
<body onload="loadResources()">
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<div class="container-fluid">
<a class="navbar-brand" href="index.html">Old English</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link nav-link active" aria-current="page" href="index.html">home</a>
</li>
<li class="nav-item">
<a class="nav-item nav-link" href="news.html">news</a>
</li>
<li class="nav-item">
<a class="nav-item nav-link" href="request_form.html">suggest resource</a>
</li>
<li class="nav-item">
<a class="nav-item nav-link" href="about.html">about</a>
</li>
<li class="nav-item">
<a class="nav-link nav-link" href="verbs.html">verbs</a>
</li>
<li class="nav-item">
<a class="nav-link nav-link" href="wordl.html">wordl</a>
</li>
</ul>
</div>
</div>
</nav>
<br />
<table id="resourcesTable" class="table table-bordered table-striped nowrap" style="width: 100%; position: relative;">
<thead>
<tr>
<th>Title</th>
<th>Author</th>
<th>URL</th>
<th>Year</th>
<th>Type</th>
<th>Tags</th>
</tr>
</thead>
<tbody id="resourcesTableBody">
</tbody>
</table>
</body>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
</html>