32 lines
728 B
Text
32 lines
728 B
Text
---
|
|
import "bootstrap/dist/css/bootstrap.css";
|
|
|
|
export interface Props {
|
|
title: string;
|
|
}
|
|
|
|
const { title } = Astro.props;
|
|
---
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width" />
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
<meta name="generator" content={Astro.generator} />
|
|
<title>{title}</title>
|
|
|
|
<link rel="stylesheet" href="/assets/css/lightbox.min.css" />
|
|
<script is:inline src="/assets/js/lightbox-plus-jquery.min.js"></script>
|
|
</head>
|
|
<body>
|
|
<slot />
|
|
</body>
|
|
</html>
|
|
|
|
<style is:global>
|
|
img.rendered-image {
|
|
max-height: 300px;
|
|
}
|
|
</style>
|