mirror of
https://github.com/kaboomserver/website.git
synced 2024-12-22 07:45:00 +00:00
71 lines
2.7 KiB
HTML
71 lines
2.7 KiB
HTML
---
|
|
---
|
|
{% 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 }} - Free OP Server in Minecraft</title>
|
|
<meta name="description" content="{{ site.description }}">
|
|
<meta http-equiv="Content-Security-Policy" content="default-src {{ site.url }} 'unsafe-inline' data:">
|
|
<link rel="canonical" href="{{ site.url }}/">
|
|
<link rel="icon" type="image/png" href="/icons/favicon-32x32.png" sizes="32x32">
|
|
<link rel="icon" type="image/png" href="/icons/favicon-16x16.png" sizes="16x16">
|
|
<link rel="manifest" href="/icons/manifest.json">
|
|
<link rel="mask-icon" href="/icons/safari-pinned-tab.svg" color="#555555">
|
|
<meta name="theme-color" content="#555555">
|
|
<style type="text/css">
|
|
{% capture style %}
|
|
{% include _css/fonts.css %}
|
|
{% include _css/index.css %}
|
|
{% endcapture %}
|
|
{{ style | scssify }}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="navigation">
|
|
<span>
|
|
<a href="#home" title="Home">
|
|
<svg aria-hidden="true" height="3.000em" viewBox="0 0 24 24" width="3.000em">
|
|
<path d="{% include _icons/kaboom %}" />
|
|
</svg>
|
|
</a>
|
|
</span>
|
|
<span>
|
|
<a href="#play" title="Play">
|
|
<svg aria-hidden="true" height="2.000em" viewBox="0 0 24 24" width="2.000em">
|
|
<path d="{% include _icons/play %}" />
|
|
</svg>
|
|
</a>
|
|
</span>
|
|
<span>
|
|
<a href="#downloads" title="Downloads">
|
|
<svg aria-hidden="true" height="2.000em" viewBox="0 0 24 24" width="2.000em">
|
|
<path d="{% include _icons/downloads %}" />
|
|
</svg>
|
|
</a>
|
|
</span>
|
|
</div>
|
|
<div id="home" class="main">
|
|
<div class="main-container">
|
|
<h1>Welcome to {{ site.title }}!</h1>
|
|
<p>{{ site.title }} is a Minecraft server where you can do anything you want, whether it be building or testing commands. Enjoy access to many operator commands and server tools, such as WorldEdit and CommandSpy.</p>
|
|
<a href="#play" class="button">Play</a>
|
|
</div>
|
|
</div>
|
|
<div id="play" class="main">
|
|
<div class="main-container">
|
|
<h2>Play</h2>
|
|
<p>If you want to play on {{ site.title }}, simply add the IP "{{ site.title | downcase }}" to your server list in Minecraft.</p>
|
|
</div>
|
|
</div>
|
|
<div id="downloads" class="main">
|
|
<div class="main-container">
|
|
<h2>Downloads</h2>
|
|
<p>We provide downloads for worlds and schematics on the server, to make it easy for you to export your creations. The downloads update every 15 minutes.</p>
|
|
<a href="https://github.com/kaboompw/downloads/archive/schematics.zip" class="button">Schematics</a>
|
|
<a href="https://github.com/kaboompw/downloads/archive/worlds.zip" class="button">Worlds</a>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>{% endcapture %}{{ content | strip_newlines | replace:' ','' }}
|