31 lines
742 B
Plaintext
31 lines
742 B
Plaintext
---
|
|
import BaseHead from "@/components/BaseHead.astro";
|
|
import Header from "@/components/Header.astro";
|
|
import Footer from "@/components/Footer.astro";
|
|
import Gallery from "@/components/Gallery.astro";
|
|
import ExternalScripts from "@/components/ExternalScripts.astro";
|
|
|
|
let title = "tiff's photos";
|
|
let description =
|
|
"basically photos of my cat, my tools, and my family and town";
|
|
---
|
|
|
|
<!doctype html>
|
|
<html lang="en">
|
|
<BaseHead
|
|
title={title}
|
|
description={description}
|
|
author={'AREA44'}
|
|
og={'og-image.jpg'}
|
|
/>
|
|
|
|
<body class="is-preload">
|
|
<div id="wrapper">
|
|
<Header title={title} />
|
|
<Footer title={title} description={description} />
|
|
<Gallery />
|
|
</div>
|
|
<ExternalScripts />
|
|
</body>
|
|
</html>
|