library/frontend/files/index.html

45 lines
1.2 KiB
HTML
Raw Normal View History

2021-06-26 18:08:35 +00:00
<!DOCTYPE html>
2023-02-25 22:26:25 +00:00
<html lang="en">
2021-06-26 18:08:35 +00:00
<head>
<title>Library</title>
2021-08-05 02:59:23 +00:00
<link rel="stylesheet" href="style.css" />
2021-06-26 18:08:35 +00:00
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<link
2021-08-05 02:59:23 +00:00
href="https://fonts.googleapis.com/css?family=Libre+Baskerville:400,700&display=swap"
2021-08-09 01:23:43 +00:00
as="style"
rel="stylesheet preload prefetch"
2021-06-26 18:08:35 +00:00
/>
2021-11-01 00:00:04 +00:00
<script type="text/javascript" src="app.js"></script>
<script type="text/javascript">
window.addEventListener("DOMContentLoaded", init);
</script>
2023-02-25 22:26:25 +00:00
<meta name="description" content="A personal library record." />
2021-06-26 18:08:35 +00:00
</head>
<body>
<div class="wrapper">
<div id="header">
<h1>Library</h1>
<a href="/records">records</a>
2021-08-05 02:59:23 +00:00
<a
target="_blank"
rel="noreferrer"
href="https://git.yetaga.in/alazyreader/library"
2021-06-26 18:08:35 +00:00
>git</a
>
<div id="searchBox">
2023-02-05 01:51:40 +00:00
<span id="bookCount" class="bookCount">_ books</span>
2021-06-26 18:08:35 +00:00
<input
id="search"
type="text"
name="search"
placeholder="Search..."
/>
</div>
</div>
<div id="current">No Book Selected</div>
<div id="books"></div>
<!-- Table goes here -->
</div>
</body>
</html>