mirror of
https://github.com/kaboomserver/website.git
synced 2024-12-22 07:45:00 +00:00
19 lines
571 B
HTML
19 lines
571 B
HTML
---
|
|
permalink: /404
|
|
sitemap: false
|
|
---
|
|
{% capture content %}<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="refresh" content="0;url={{ site.url }}">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{{ site.title }} - Free OP Server in Minecraft</title>
|
|
<meta http-equiv="Content-Security-Policy" content="default-src {{ site.url }} 'unsafe-inline' data:">
|
|
<style type="text/css">
|
|
html {
|
|
background: #eee;
|
|
}
|
|
</style>
|
|
</head>
|
|
</html>{% endcapture %}{{ content | strip_newlines | replace:' ','' }}
|