Files
tenwholeyears-web/src/layouts/Layout.astro
T
2026-06-27 10:57:40 -05:00

26 lines
752 B
Plaintext

---
import Footer from "$components/Footer.astro";
---
<!doctype html>
<html>
<head>
<title>TenWholeYears</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="/css/bootstrap.min.css" rel="stylesheet" media="screen" />
<link
href="/css/bootstrap-responsive.min.css"
rel="stylesheet"
media="screen"
/>
<link href="/css/styles.css" rel="stylesheet" />
<link rel="icon" type="image/x-icon" href="/favicon.ico">
</head>
<body>
<script src="/js/jquery-4.0.0.min.js" is:inline></script>
<slot />
<Footer />
<script src="/js/bootstrap.min.js" is:inline></script>
</body>
</html>