library/frontend/files/index.html

43 lines
1.1 KiB
HTML
Raw Normal View History

2021-06-26 18:08:35 +00:00
<!DOCTYPE html>
<html>
<head>
<title>Library</title>
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
/>
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>
2021-06-26 18:08:35 +00:00
</head>
<body>
<div class="wrapper">
<div id="header">
<h1>Library</h1>
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">
<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>