Files
opds-proxy/html/layout.html
Evan Buss 3e3b662aa9 fix: mobile device scale
Add `viewport` meta tag so site scales properly on mobile devices
2024-08-12 13:57:50 +00:00

15 lines
344 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=0.8">
<title>{{block "title" .}}Kobo OPDS Proxy{{end}}</title>
<link rel="stylesheet" href="/static/style.css" />
</head>
<body>
<main id="container">{{block "content" .}}{{end}}</main>
</body>
</html>