31 lines
No EOL
917 B
Text
31 lines
No EOL
917 B
Text
---
|
|
title: Lio
|
|
description: "Lio's personal site"
|
|
---
|
|
<!doctype html>
|
|
|
|
<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="styles.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="ccontainer bg-red-200 dark:bg-zinc-900 dark:text-white">
|
|
{{ if includeSocials }}
|
|
{{ include "partials/socials.vento" }}
|
|
{{ /if}}
|
|
|
|
<main class="">
|
|
{{ content }}
|
|
</main>
|
|
|
|
{{ if includeFooter }}
|
|
{{ include "partials/footer.vento" }}
|
|
{{ /if}}
|
|
</body>
|
|
</html> |