ypsilanti/site/layouts/post.html
Maxfield Luke bda33ef628
Some checks failed
ci / test (push) Failing after 2s
pages / build (push) Failing after 1s
pages / deploy (push) Has been skipped
Initial commit
2026-07-06 02:56:57 -04:00

27 lines
793 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="{{description}}">
<meta name="author" content="{{author}}">
<meta property="og:title" content="{{title}} - {{site_title}}">
<meta property="og:description" content="{{description}}">
<meta property="og:type" content="article">
<meta property="og:url" content="{{permalink}}">
<title>{{title}} - {{site_title}}</title>
<link rel="stylesheet" href="/style.css">
</head>
<body class="theme-{{theme}}">
<div class="page">
{{> nav}}
<main>
<h1>{{title}}</h1>
<p class="post-date">posted {{date}}</p>
{{{toc}}}
{{{content}}}
</main>
{{> footer}}
</div>
</body>
</html>