44 lines
1.6 KiB
Plaintext
44 lines
1.6 KiB
Plaintext
---
|
|
interface Props {
|
|
title: string;
|
|
}
|
|
|
|
const { title } = Astro.props;
|
|
---
|
|
|
|
<!doctype html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="description" content="Astro description" />
|
|
<meta name="viewport" content="width=device-width" />
|
|
<meta name="generator" content={Astro.generator} />
|
|
<title>{title} — Leim Wiki</title>
|
|
|
|
<link rel="apple-touch-icon" sizes="76x76" href="/apple-touch-icon.png">
|
|
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
|
|
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
|
|
<link rel="manifest" href="/site.webmanifest">
|
|
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#6595b4">
|
|
<meta name="msapplication-TileColor" content="#00aba9">
|
|
<meta name="theme-color" content="#a9d1eb">
|
|
|
|
<script is:inline src="https://unpkg.com/@phosphor-icons/web"></script>
|
|
|
|
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css" integrity="sha256-p4NxAoJBhIIN+hmNHrzRCf9tD/miZyoHS5obTRR9BMY=" crossorigin="" />
|
|
<script is:inline src="https://unpkg.com/leaflet@1.9.4/dist/leaflet.js" integrity="sha256-20nQCchB9co0qIjJZRGuk2/Z9VM+kNiyxNV1lvTlZBo=" crossorigin="">
|
|
</script>
|
|
<script is:inline type="text/javascript" src="/js/leaflet-zoomify.min.js"></script>
|
|
|
|
<link rel="stylesheet" href="leaflet-measure/leaflet-measure.css" />
|
|
<script is:inline type="text/javascript" src="/js/leaflet-measure.min.js"></script>
|
|
</head>
|
|
<body>
|
|
<slot />
|
|
</body>
|
|
</html>
|
|
|
|
<style lang="scss">
|
|
@use '../assets/scss/theme.scss';
|
|
</style>
|