kittensite/_includes/main_layout.njk

27 lines
763 B
Plaintext

---
icon: /assets/icon_pink.svg
---
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/css/common.css">
<link rel="stylesheet" href="/css/main.css">
<meta name="author" content="Agatha">
<meta name="description" content="where the kittens live!">
<meta name="theme-color" content="#f3c3f7">
<meta property="og:image" itemprop="image" content="/assets/kitties.png">
<link rel="icon" type="image/svg" href="{{ icon }}" />
<title>{{ title }}</title>
</head>
<body>
{{ content | safe }}
<img id="kittens" src="/assets/kitties.png" alt="A silhouette of two cats sitting near eachother">
</body>
</html>