This commit is contained in:
jetstream0
2023-11-01 07:39:08 +00:00
commit e85193dcb4
23 changed files with 1484 additions and 0 deletions

24
templates/directory.html Normal file
View File

@@ -0,0 +1,24 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>[[ listing.name ]] ([[ listing.type ]]) directory</title>
<style>
/* */
</style>
</head>
<body>
<div id="main">
<div>
<a href="/">Front page</a>
<ul>
<!-- called chapters, but both anime and manga will use this -->
[[ for:chapters:chapter ]]
[[ component:chapter-listing ]]
[[ endfor ]]
</ul>
</div>
</div>
</body>
</html>