63 lines
1.6 KiB
Plaintext
63 lines
1.6 KiB
Plaintext
---
|
|
import "~/styles/app.css";
|
|
import Header from "./_components/Header.astro";
|
|
import Footer from "./_components/Footer.astro";
|
|
---
|
|
|
|
<!doctype html>
|
|
<html lang="pt-br">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta name="generator" content={Astro.generator} />
|
|
<link rel="sitemap" href="/sitemap-index.xml" />
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
<slot name="head">
|
|
<title>
|
|
Educação que garante sua segurança — EDUSEG®
|
|
</title>
|
|
</slot>
|
|
|
|
<script
|
|
is:inline
|
|
src="https://www.googletagmanager.com/gtag/js?id=G-G2989LF493"
|
|
></script>
|
|
|
|
<script is:inline>
|
|
window.dataLayer = window.dataLayer || [];
|
|
function gtag() {
|
|
dataLayer.push(arguments);
|
|
}
|
|
gtag("js", new Date());
|
|
|
|
gtag("consent", "default", {
|
|
ad_storage: "denied",
|
|
ad_user_data: "denied",
|
|
ad_personalization: "denied",
|
|
analytics_storage: "denied",
|
|
});
|
|
|
|
gtag("config", "G-G2989LF493");
|
|
</script>
|
|
</head>
|
|
|
|
<body>
|
|
<Header />
|
|
|
|
<slot name="nav" />
|
|
|
|
<main id="content" data-pagefind-body>
|
|
<slot />
|
|
</main>
|
|
|
|
<Footer />
|
|
|
|
<style is:global>
|
|
/* https://css-tricks.com/almanac/properties/c/content-visibility/ */
|
|
img {
|
|
content-visibility: auto;
|
|
}
|
|
</style>
|
|
</body>
|
|
</html>
|