mirror of
https://github.com/kaboomserver/website.git
synced 2024-12-22 07:45:00 +00:00
20 lines
540 B
HTML
20 lines
540 B
HTML
---
|
|
permalink: /404
|
|
sitemap: false
|
|
---
|
|
{% capture content %}<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{{ site.title }}</title>
|
|
<meta name="description" content="{{ site.description }}">
|
|
<link rel="canonical" href="{{ site.url }}">
|
|
<meta http-equiv="refresh" content="0;url={{ site.url }}">
|
|
<style type="text/css">
|
|
html {
|
|
background: #000;
|
|
}
|
|
</style>
|
|
</head>
|
|
</html>{% endcapture %}{{ content | strip_newlines | replace:' ','' }}
|