-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
44 lines (33 loc) · 1.58 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>MLPleaseHelp</title>
<link rel="icon" type="image/png" href="img/favico.png" />
<link rel="stylesheet" type="text/css" href="css/screen.css" />
<link rel="stylesheet" type="text/css" href="css/prism-okaidia.css" />
<link rel="stylesheet" type="text/css" href="css/localstyle.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="js/ml-assets.js"></script>
<script src="js/ml-display.js"></script>
</head>
<body>
<div id="titlebox">
<a href="index.html"><img src="img/banner.png" /></a><br />
<span class="right-align">To use: Type a keyword into the searchbox to filter the list of machine learning resources.</span>
<span class="right-align">To add new entries, open a Pull Request on Github, and make sure to use <a href="formatter.html">the Formatter page</a>.</span>
</div>
<div class="searchbox_container">
<input id="searchbox" type="text" onkeyup="advancedFilter()" autofocus="autofocus" />
</div>
<div id="counter_box">
<span id="counter_label">Resources found: <span id="counter"></span></span>
</div>
<div id="resources_box">
</div>
<div id="footer">
View this project <a href="https://github.com/jgreenemi/MLPleaseHelp">on Github.</a>
</div>
</body>
</html>