diff options
Diffstat (limited to 'src/layouts/Layout.astro')
-rw-r--r-- | src/layouts/Layout.astro | 75 |
1 files changed, 75 insertions, 0 deletions
diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro new file mode 100644 index 0000000..a229f92 --- /dev/null +++ b/src/layouts/Layout.astro @@ -0,0 +1,75 @@ +<!doctype html> +<html lang="en"> + <head> + <meta charset="UTF-8" /> + <meta name="viewport" content="width=device-width" /> + <link rel="icon" href="/favicon.ico" /> + <meta name="generator" content={Astro.generator} /> + <title>liz.coffee</title> + <link rel="stylesheet" href="/styles/styles.css" /> + </head> + <body> + <header> + <h1 class="bright2">## liz.coffee</h1> + <hr /> + </header> + <main> + <slot /> + </main> + <footer> + <hr /> + <div class="blinkies"> + <img + width="150" + height="20" + src="/img/blinkies/hatecomputers-club.gif" + /> + <img + width="150" + height="20" + src="/img/blinkies/autism.gif" + /> + <img + width="150" + height="20" + src="/img/blinkies/fuckcomputers.gif" + /> + <img + width="150" + height="20" + src="/img/blinkies/bee.gif" + /> + <img + width="150" + height="20" + src="/img/blinkies/begaydocrime.gif" + /> + <img + width="150" + height="20" + src="/img/blinkies/bored.gif" + /> + <img + width="150" + height="20" + src="/img/blinkies/connection.gif" + /> + <img + width="150" + height="20" + src="/img/blinkies/eepy.gif" + /> + <img + width="150" + height="20" + src="/img/blinkies/loveuguys.gif" + /> + <img + width="150" + height="20" + src="/img/blinkies/capitalism.gif" + /> + </div> + </footer> + </body> +</html> |