fl1tzi.com/_layouts/page.html
2023-10-03 18:17:12 +02:00

45 lines
890 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>{{ page.title }}</title>
<meta charset="UTF-8">
<link rel="stylesheet" href="/assets/main.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Fl1tzi<root@fl1tzi.com>">
</head>
<body>
{% if page.notice %}
<div class="notice">
{{ page.notice }}
</div>
{% endif %}
<header>
<h1>{{ page.title }}</h1>
{% if page.date %}
<span>{{ page.date | date: "%-d %B %Y" }}</span>
{% endif %}
</header>
<section id="content">
{{ content }}
</section>
<br/>
<hr/>
<footer>
<small>
{% for item in site.data.footer %}
<a href="{{ item.link }}">{{ item.display }}</a>
//
{% endfor %}
{{ site.license_information }}
</small>
</footer>
</body>
</html>