35 lines
811 B
TypeScript
35 lines
811 B
TypeScript
import { escapeHtml } from "../utils/html";
|
|
|
|
interface LayoutProps {
|
|
title: string;
|
|
content: string;
|
|
}
|
|
|
|
export function BaseLayout({ title, content }: LayoutProps): string {
|
|
const safeTitle = escapeHtml(title);
|
|
return `<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>${safeTitle} | Aurora</title>
|
|
<link rel="stylesheet" href="/style.css">
|
|
<meta name="description" content="Aurora Bot Web Interface">
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1>Aurora Web</h1>
|
|
<nav>
|
|
<a href="/">Home</a>
|
|
</nav>
|
|
</header>
|
|
<main>
|
|
${content}
|
|
</main>
|
|
<footer>
|
|
<p>© ${new Date().getFullYear()} Aurora Bot</p>
|
|
</footer>
|
|
</body>
|
|
</html>`;
|
|
}
|