mirror of
https://github.com/alexandernicholson/s3panoramic.git
synced 2026-05-05 22:40:40 +09:00
21 lines
593 B
TypeScript
21 lines
593 B
TypeScript
export function layout(content: string) {
|
|
return `
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Object Storage Browser</title>
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@picocss/pico@1/css/pico.min.css">
|
|
<link rel="stylesheet" href="/static/styles.css">
|
|
<script src="https://unpkg.com/htmx.org@1.9.10"></script>
|
|
</head>
|
|
<body>
|
|
<main class="container">
|
|
${content}
|
|
</main>
|
|
</body>
|
|
</html>
|
|
`;
|
|
}
|