-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlibraries.html
More file actions
75 lines (61 loc) · 2.7 KB
/
libraries.html
File metadata and controls
75 lines (61 loc) · 2.7 KB
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>I love Lua</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"></script>
<!-- the used glyphs are listed here https://www.w3schools.com/bootstrap/bootstrap_ref_comp_glyphs.asp -->
<script type="text/javascript" src="libraries.js"></script>
<link rel="stylesheet" type="text/css" href="libraries.css" />
</head>
<body>
<h1><span class="white">I love </span>Lua</h1>
<h2>created by the <a href="https://github.com/LuaWorkgroup" target="_blank">Lua Workgroup</a></h2>
<div class="maincontainer">
<!-- <div class="statistics"> -->
<!-- <div id="myProgress"> <div id="myBar">10%</div> </div> -->
<!-- </div> -->
<div class="filter">
<input type="text" id="searchbox" onkeyup="filterTable()" placeholder="Search ..." title="search for a Lua module">
<div class="dropdown">
<div class="select">
<span>All</span>
</div>
<input type="hidden" name="gender">
<ul class="dropdown-menu">
<li id="ddmall">All</li>
<li id="ddmout">Outdated</li>
<li id="ddmlua54">Lua 5.4 (Up To Date)</li>
<li id="ddmlua53">Lua 5.3</li>
<li id="ddmlua52">Lua 5.2</li>
<li id="ddmlua51">Lua 5.1</li>
<li id="ddmactive">Active</li>
<li id="ddmdead">Dead</li>
<li id="ddmnew">New Maintainer</li>
<li id="ddmhelp">Need Help</li>
</ul>
</div>
</div>
<table class="data">
<thead>
<tr class="dataheader">
<th><h1>Name</h1></th>
<th><h1>Description</h1></th>
<th><h1>Status</h1></th>
<th><h1>5.1</h1></th>
<th><h1>5.2</h1></th>
<th><h1>5.3</h1></th>
<th><h1>5.4</h1></th>
</tr>
</thead>
<tbody id="databody">
</tbody>
</table>
</div>
</body>
</html>
<!-- vim: fdm=indent
-->