Files
pokemon/src/layouts/Main.astro

47 lines
1.8 KiB
Plaintext
Raw Normal View History

2026-02-12 23:27:13 -05:00
---
import '/src/assets/css/main.scss';
---
<!DOCTYPE html>
<html lang="en" data-bs-theme="dark">
2026-02-12 23:27:13 -05:00
<head>
2026-02-25 14:12:11 -05:00
<script>
window.dataLayer = window.dataLayer || [];
</script>
<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-PPQMZ4PL');</script>
<!-- End Google Tag Manager -->
2026-02-12 23:27:13 -05:00
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="icon" href="/favicon.ico" />
2026-02-25 14:12:11 -05:00
<title>Rigid's App Thing</title>
2026-02-12 23:27:13 -05:00
</head>
<body>
2026-02-25 14:12:11 -05:00
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-PPQMZ4PL"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
2026-02-12 23:27:13 -05:00
<slot />
2026-02-16 19:54:20 -05:00
<script>
// Import only what you need
// import 'bootstrap/js/dist/alert';
import 'bootstrap/js/dist/button';
2026-02-16 19:54:20 -05:00
// import 'bootstrap/js/dist/carousel';
// import 'bootstrap/js/dist/collapse';
// import 'bootstrap/js/dist/dropdown';
import 'bootstrap/js/dist/modal';
// import 'bootstrap/js/dist/offcanvas';
// import 'bootstrap/js/dist/popover';
// import 'bootstrap/js/dist/scrollspy';
import 'bootstrap/js/dist/tab';
2026-02-25 14:12:11 -05:00
import 'bootstrap/js/dist/toast';
2026-02-16 19:54:20 -05:00
// import 'bootstrap/js/dist/tooltip';
</script>
2026-02-20 11:54:05 -05:00
<script src="https://cdn.jsdelivr.net/npm/htmx.org@2.0.8/dist/htmx.min.js"></script>
2026-02-12 23:27:13 -05:00
</body>
</html>