Files
s3panoramic/src/templates/layout.ts
Alexander Nicholson 4584443+DragonStuff@users.noreply.github.com 6d8acb2752 feature: v1
2024-11-19 00:48:26 +09:00

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>
`;
}