-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcatalog.html
63 lines (58 loc) · 1.77 KB
/
catalog.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
<html>
<head>
<title>Mangaloid</title>
<meta charset="UTF-8"/>
<link rel="stylesheet" href="css/stylesheet.css"/>
<link rel="stylesheet" href="css/title_list.css"/>
</head>
<body>
<div id="header">
<div id="menu">
<img id="menu-icon" src="img/home.png"/>
<div id="menu-items">
<a href="./catalog.html">Catalog</a>
<a href="./search.html">Search</a>
<a href="">Tags</a>
<a href="./about.html">About</a>
</div>
</div>
<form action="/search.html">
<input id="search_bar" type="search" name="title" placeholder="Search">
<button id="search_button" type="submit">Search</button>
</form>
<img id="logo" src="img/logo.png"/>
</div>
<div id="content">
<h2 id="label">Recently updated</h2>
<div id="title_list">
<center>
<table id="table">
<tbody>
<tr>
<th></th>
<th><p>Title</p></th>
<th><p>Artist/Author</p></th>
<th><p>Status</p></th>
<th><p>Chapters</p></th>
<th><p>Updated</p></th>
</tr>
</tbody>
</table>
</center>
</div>
<div id="footer">
</div>
</div>
<script type="text/javascript" src="js/title_list.js"></script>
<script type="text/javascript" src="js/instance.js"></script>
<script>
document.onreadystatechange = function () {
if(document.readyState == "interactive") {
var addr = get_instance();
console.log("loading from "+addr);
load_titles("https://"+addr);
}
}
</script>
</body>
</html>