main
HerrHase 1 year ago
parent 3df8dcec8b
commit 9216dbd4e9

@ -0,0 +1,5 @@
---
title: 404
view: 404.njk
---
Nothing found!

@ -0,0 +1,74 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>
404 | A blog
</title>
<meta name="robots" content="index" />
<link href="true://a-blog.lan/404.html" rel="canonical">
<link rel="alternate" href="true://a-blog.lan/404.html" hreflang="en">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="/css/styles.css" rel="stylesheet" type="text/css">
</head>
<body class="site-body">
<header class="site-header">
<div class="bar">
<div class="bar__start">
<a class="site-header__title h4 m-left-3 m-top-4 m-bottom-4 color-text-contrast" href="/">
A blog
</a>
</div>
</div>
</header>
<main class="site-main">
<div class="m-left-4 m-right-4">
<ul class="breadcrumb">
<li>
<a class="underline" href="/">
Home
</a>
</li>
<li><span>></span></li>
<li>
<span>
404
</span>
</li>
</ul>
</div>
<div class="container">
<div class="grid">
<div class="col-12">
<div class="grid justify-center">
<div class="col-12">
<div class="m-top-6">
<article class="page">
<header class="page__header m-bottom-3 center">
<h1 class="m-bottom-3 h2 highlight centered">
404
</h1>
</header>
<div class="content center">
<p>Nothing found!</p>
</div>
</article>
</div>
</div>
</div>
</div>
</div>
</div>
</main>
<footer class="site-footer m-top-6 m-bottom-4 m-left-4 m-right-4 display-flex justify-space-between">
<div>
MIT License
</div>
<div>
<a class="underline m-right-3" href="/imprint.html">Imprint</a>
<a class="underline" href="/privacy-policy.html">Privacy Policy</a>
</div>
</footer>
<script defer src="/js/critical.js"></script>
</body>
</html>

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -1,18 +1,22 @@
<?xml version="1.0" encoding="UTF-8"?><urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>https://a-blog.lan/404.html</loc>
<lastmod>2023-01-17T00:19:49+01:00</lastmod>
</url>
<url>
<loc>https://a-blog.lan/faridn-frin.html</loc>
<lastmod>2023-01-16T23:53:51+01:00</lastmod>
<lastmod>2023-01-17T00:19:49+01:00</lastmod>
</url>
<url>
<loc>https://a-blog.lan/hipaa-mofa-cold.html</loc>
<lastmod>2023-01-16T23:53:51+01:00</lastmod>
<lastmod>2023-01-17T00:19:49+01:00</lastmod>
</url>
<url>
<loc>https://a-blog.lan/imprint.html</loc>
<lastmod>2023-01-16T23:53:51+01:00</lastmod>
<lastmod>2023-01-17T00:19:49+01:00</lastmod>
</url>
<url>
<loc>https://a-blog.lan/index.html</loc>
<lastmod>2023-01-16T23:53:51+01:00</lastmod>
<lastmod>2023-01-17T00:19:49+01:00</lastmod>
</url>
</urlset>

@ -0,0 +1,36 @@
{% extends('layout.njk') %}
{% block breadcrumb %}
<ul class="breadcrumb">
<li>
<a class="underline" href="/">
Home
</a>
</li>
<li><span>></span></li>
<li>
<span>
{{ page.title }}
</span>
</li>
</ul>
{% endblock %}
{% block main %}
<div class="grid justify-center">
<div class="col-12">
<div class="m-top-6">
<article class="page">
<header class="page__header m-bottom-3 center">
<h1 class="m-bottom-3 h2 highlight centered">
{{ page.title }}
</h1>
</header>
<div class="content center">
{{ page.content | safe }}
</div>
</article>
</div>
</div>
</div>
{% endblock %}
Loading…
Cancel
Save