lotus/_src/_includes/layouts/base.vento

29 lines
No EOL
971 B
Text

---
title: Lio
description: "Lio's personal site"
---
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{ title }} - Lio</title>
<meta name="description" content="{{ description }}">
<meta name="supported-color-schemes" content="light dark" />
<link rel="stylesheet" href="/files/styles/main.css">
<link rel="alternate" href="/feed.xml" type="application/atom+xml" title="{{ title }}">
<link rel="alternate" href="/feed.json" type="application/json" title="{{ title }}">
</head>
<body class="bg-red-200 dark:bg-zinc-900 dark:text-white">
{{ if includeSocials }}
{{ include "partials/socials.vento" }}
{{ /if}}
{{ comp Sidebar}}
<div class="">
{{content}}
</div>
{{ if includeFooter }}
{{ include "partials/footer.vento" }}
{{ /if}}
{{ /comp }}
</body>
</html>