2022-04-02 17:38:14 +00:00
|
|
|
|
<!DOCTYPE html>
|
2023-02-25 22:27:43 +00:00
|
|
|
|
<html lang="en">
|
2022-04-02 17:38:14 +00:00
|
|
|
|
<head>
|
|
|
|
|
<title>Library</title>
|
|
|
|
|
<link rel="stylesheet" href="style.css" />
|
|
|
|
|
<link rel="icon" href="favicon.ico" type="image/x-icon" />
|
|
|
|
|
<link
|
|
|
|
|
href="https://fonts.googleapis.com/css?family=Libre+Baskerville:400,700&display=swap"
|
|
|
|
|
as="style"
|
|
|
|
|
rel="stylesheet preload prefetch"
|
|
|
|
|
/>
|
|
|
|
|
<script type="text/javascript" src="app.js"></script>
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
|
window.addEventListener("DOMContentLoaded", init);
|
|
|
|
|
</script>
|
2023-04-22 00:16:18 +00:00
|
|
|
|
<script defer data-domain="library.yetaga.in" src="https://stats.yetaga.in/js/script.js"></script>
|
2023-02-25 22:27:43 +00:00
|
|
|
|
<meta
|
|
|
|
|
name="description"
|
|
|
|
|
content="A scrollable view of all of my records."
|
|
|
|
|
/>
|
2022-04-02 17:38:14 +00:00
|
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
<div class="wrapper">
|
|
|
|
|
<div id="header">
|
|
|
|
|
<h1>Records</h1>
|
|
|
|
|
<a href="/">books</a>
|
|
|
|
|
<a
|
|
|
|
|
target="_blank"
|
|
|
|
|
rel="noreferrer"
|
|
|
|
|
href="https://git.yetaga.in/alazyreader/library"
|
|
|
|
|
>git</a
|
|
|
|
|
>
|
|
|
|
|
<div id="searchBox">
|
2023-02-12 04:00:38 +00:00
|
|
|
|
<span id="recordCount" class="recordCount">_ records</span>
|
2022-04-02 17:38:14 +00:00
|
|
|
|
<input
|
|
|
|
|
id="search"
|
|
|
|
|
type="text"
|
|
|
|
|
name="search"
|
|
|
|
|
placeholder="Search..."
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div id="records"></div>
|
2023-02-12 04:00:38 +00:00
|
|
|
|
<footer>
|
|
|
|
|
This application uses Discogs’ API but is not affiliated with, sponsored
|
|
|
|
|
or endorsed by Discogs. ‘Discogs’ is a trademark of Zink Media, LLC.
|
|
|
|
|
</footer>
|
2022-04-02 17:38:14 +00:00
|
|
|
|
<!-- Table goes here -->
|
|
|
|
|
</div>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|