35 lines
954 B
Plaintext
35 lines
954 B
Plaintext
---
|
|
import Navigation from '../components/Navigation.astro';
|
|
import Footer from '../components/Footer.astro';
|
|
import '../styles/global.css';
|
|
|
|
export interface Props {
|
|
title: string;
|
|
description?: string;
|
|
}
|
|
|
|
const { title, description = 'CC24-Guide - A comprehensive directory of digital forensics and incident response tools' } = Astro.props;
|
|
---
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta name="description" content={description}>
|
|
<title>{title} - CC24-Guide</title>
|
|
<link rel="icon" type="image/x-icon" href="/favicon.ico">
|
|
<script src="/src/scripts/theme.js"></script>
|
|
<script>
|
|
// Initialize theme immediately to prevent flash
|
|
(window as any).themeUtils?.initTheme();
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<Navigation />
|
|
<main class="container" style="flex: 1; padding: 2rem 1rem;">
|
|
<slot />
|
|
</main>
|
|
<Footer />
|
|
</body>
|
|
</html> |