mirror of https://github.com/kurisufriend/frontend
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.5 KiB
55 lines
1.5 KiB
<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">
|
|
<a href="./catalog.html"><img id="home" src="img/home.png"/></a>
|
|
<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/cookie.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>
|
|
|