<!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:'none'}) %> 
    <div class="container" id="container" >
        <%- include('display.ejs', {data}) %>
    </div>
  </div>
</body>

</html>