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.
31 lines
1.2 KiB
31 lines
1.2 KiB
<!DOCTYPE html>
|
|
<html lang="en-US">
|
|
<head>
|
|
<meta http-equiv="Content-type" content="text/html;charset=UTF-8"/>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
|
<link rel="icon" type="image/ico" href="images/favicon.ico"/>
|
|
<title>Manga Reader</title>
|
|
<link rel="stylesheet" type="text/css" href="/css/home.css" id="pagesheet"/>
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200" />
|
|
<script type="module" src="/js/home.js"></script>
|
|
<script src="https://unpkg.com/htmx.org@1.9.10"></script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
<div class="progress" style="height: 3px; background-color: white;">
|
|
<div class="indeterminate" style="background-color: red;"></div>
|
|
</div>
|
|
<div id="wrapper">
|
|
<%- include('navBar.ejs', {data, selected:true}) %>
|
|
<div class="container" id="container" >
|
|
<div class="continueSection" hx-get="/continue" hx-trigger="load" hx-indicator=".progress"></div>
|
|
<h2 id="RecommendTitle">Recommended</h2>
|
|
<div class="recommended" hx-get="/recommended" hx-trigger="load" hx-indicator=".progress"></div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|
|
|