35 lines
893 B
HTML
35 lines
893 B
HTML
<!doctype html>
|
|
<html lang="en-US">
|
|
<head>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<meta charset="utf-8" />
|
|
<title>{{ page.title }} - {{ site.title }}</title>
|
|
<link rel="stylesheet" href="/assets/css/main.css" />
|
|
<link
|
|
rel="alternate"
|
|
type="application/rss+xml"
|
|
href="{{ site.url }}/feed.xml"
|
|
title="{{ site.title }}"
|
|
/>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<a class="logo" href="/" tabindex="-1">
|
|
<img src="/assets/images/logo.png" />
|
|
</a>
|
|
<h1>
|
|
<a href="/">{{ site.title }}</a>
|
|
</h1>
|
|
<p role="doc-subtitle">
|
|
For
|
|
<a href="https://impress.openneo.net/">Dress to Impress</a>, and uhh
|
|
maybe other things later!
|
|
</p>
|
|
</header>
|
|
<main>{{ content }}</main>
|
|
<footer>
|
|
Made with love by Matchu and the OpenNeo team!
|
|
<nav><a href="/feed.xml">Follow with an RSS reader</a></nav>
|
|
</footer>
|
|
</body>
|
|
</html>
|