forked from Ivasoft/opds-proxy
17 lines
477 B
HTML
17 lines
477 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>{{block "title" .}}Kobo OPDS Proxy{{end}}</title>
|
|
<link rel="stylesheet" href="/static/style.css" />
|
|
<script
|
|
src="https://unpkg.com/htmx.org@2.0.0"
|
|
integrity="sha384-wS5l5IKJBvK6sPTKa2WZ1js3d947pvWXbPJ1OmWfEuxLgeHcEbjUUA5i9V5ZkpCw"
|
|
crossorigin="anonymous"
|
|
></script>
|
|
</head>
|
|
<body>
|
|
<main id="container">{{block "content" .}}{{end}}</main>
|
|
</body>
|
|
</html>
|