site/src/_includes/landing.njk

31 lines
842 B
Plaintext
Raw Normal View History

2024-06-10 04:06:12 -04:00
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="generator" content="{{ eleventy.generator }}">
<title>{% if title %}{{ title }} | {% endif %}{{ meta.siteName }}</title>
<link rel="stylesheet" href="/css/reset.css">
<link rel="stylesheet" href="/css/landing.css">
</head>
<body>
<aside>
<img
src="../img/gba-gil.png"
alt="A picture of Gil (me), taken with webgbcam"
title="A picture of Gil (me), taken with webgbcam"
>
</aside>
<main>
<article>{{ content | safe }}</article>
<a href="/about">
<img
src="../img/landing-button.png"
alt="Enter site"
title="Enter site"
>
</a>
</main>
</body>
</html>