website/index.html
2017-02-12 19:12:09 +02:00

66 lines
2.4 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 }}/">
<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="1.500em" viewBox="0 0 24 24" width="1.500em">
<path d="{% include _icons/kaboom %}" />
</svg>
</a>
</span>
<span>
<a href="#play" title="Play">
<svg aria-hidden="true" height="1.063em" viewBox="0 0 24 24" width="1.063em">
<path d="{% include _icons/play %}" />
</svg>
</a>
</span>
<span>
<a href="#downloads" title="Downloads">
<svg aria-hidden="true" height="1.063em" viewBox="0 0 24 24" width="1.063em">
<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:' ','' }}