lotus/_src/_includes/layouts/landing.vento

49 lines
No EOL
1.1 KiB
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 }}</title>
<meta name="description" content="{{ description }}">
<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 }}">
<style>
body {
font-family: 'Inter', sans-serif;
font-size: 1.2rem;
line-height: 1.5;
color: #fff;
background-color: #222;
margin: 0;
padding: 0;
}
</style>
</head>
<body>
{{ if includeSocials }}
{{ include "partials/socials.vento" }}
{{ /if}}
<main class="">
{{ content }}
</main>
<footer>
{{if getYear() === 2024}}
&copy; {{ getYear() }}
Lio
{{else}}
&copy; {{ getYear() }} - 2024
Lio
{{/if}}
</footer>
<!-- Current page: {{ url }} -->
</body>
</html>