website/index.html

72 lines
2.7 KiB
HTML
Raw Normal View History

2016-04-08 22:38:47 +00:00
---
---
2016-04-08 22:37:55 +00:00
{% capture content %}<!DOCTYPE html>
2014-10-17 19:10:25 +00:00
<html lang="en">
<head>
2015-12-11 19:54:37 +00:00
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2017-02-12 17:02:27 +00:00
<title>{{ site.title }} - Free OP Server in Minecraft</title>
2016-04-08 19:18:40 +00:00
<meta name="description" content="{{ site.description }}">
2017-02-12 17:02:27 +00:00
<meta http-equiv="Content-Security-Policy" content="default-src {{ site.url }} 'unsafe-inline' data:">
2016-04-08 19:20:50 +00:00
<link rel="canonical" href="{{ site.url }}/">
2017-02-12 19:05:21 +00:00
<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">
2016-04-08 22:50:39 +00:00
<style type="text/css">
2016-12-22 08:50:43 +00:00
{% capture style %}
2017-02-12 17:06:33 +00:00
{% include _css/fonts.css %}
{% include _css/index.css %}
2016-12-22 08:50:43 +00:00
{% endcapture %}
{{ style | scssify }}
2016-04-08 22:50:39 +00:00
</style>
2016-04-08 19:54:32 +00:00
</head>
<body>
2016-12-22 18:53:29 +00:00
<div id="navigation">
2017-02-12 17:02:27 +00:00
<span>
<a href="#home" title="Home">
2017-02-12 17:29:28 +00:00
<svg aria-hidden="true" height="3.000em" viewBox="0 0 24 24" width="3.000em">
2017-02-12 17:02:27 +00:00
<path d="{% include _icons/kaboom %}" />
</svg>
</a>
</span>
<span>
<a href="#play" title="Play">
2017-02-12 17:29:28 +00:00
<svg aria-hidden="true" height="2.000em" viewBox="0 0 24 24" width="2.000em">
2017-02-12 17:02:27 +00:00
<path d="{% include _icons/play %}" />
</svg>
</a>
</span>
<span>
<a href="#downloads" title="Downloads">
2017-02-12 17:29:28 +00:00
<svg aria-hidden="true" height="2.000em" viewBox="0 0 24 24" width="2.000em">
2017-02-12 17:02:27 +00:00
<path d="{% include _icons/downloads %}" />
</svg>
</a>
</span>
2016-12-22 18:53:29 +00:00
</div>
<div id="home" class="main">
<div class="main-container">
2017-02-12 17:02:27 +00:00
<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>
2016-12-22 21:09:39 +00:00
<a href="#play" class="button">Play</a>
2015-12-11 20:26:33 +00:00
</div>
</div>
2016-12-22 21:08:39 +00:00
<div id="play" class="main">
2016-12-22 18:53:29 +00:00
<div class="main-container">
2017-02-12 00:10:31 +00:00
<h2>Play</h2>
2017-02-12 17:02:27 +00:00
<p>If you want to play on {{ site.title }}, simply add the IP "{{ site.title | downcase }}" to your server list in Minecraft.</p>
2015-12-11 20:26:33 +00:00
</div>
</div>
2016-12-22 18:53:29 +00:00
<div id="downloads" class="main">
<div class="main-container">
2015-12-13 16:52:20 +00:00
<h2>Downloads</h2>
2016-12-23 13:14:56 +00:00
<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>
2017-02-12 20:47:25 +00:00
<a href="https://codeload.github.com/kaboompw/downloads/zip/schematics" class="button">Schematics</a>
<a href="https://codeload.github.com/kaboompw/downloads/zip/worlds" class="button">Worlds</a>
2015-12-13 16:52:20 +00:00
</div>
</div>
2014-10-17 19:10:25 +00:00
</body>
2016-04-08 23:04:26 +00:00
</html>{% endcapture %}{{ content | strip_newlines | replace:' ','' }}