website/index.html

48 lines
2 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">
2016-04-08 19:18:40 +00:00
<title>{{ site.title }}</title>
<meta name="description" content="{{ site.description }}">
2016-04-08 19:20:50 +00:00
<link rel="canonical" href="{{ site.url }}/">
2016-04-08 22:50:39 +00:00
<style type="text/css">
2016-12-22 08:50:43 +00:00
{% capture style %}
{% include fonts.css %}
{% include index.css %}
{% 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">
<span><a href="#home" title="Home" class="logo"></a></span>
<span><a href="#join" title="Join Server" class="join"></a></span>
<span><a href="#downloads" title="Downloads" class="downloads"></a></span>
</div>
<div id="home" class="main">
<div class="main-container">
<h1>Welcome to Flame.ga!</h1>
<p>Flame.ga provides you a unique experience in Minecraft. On this multiplayer server, you are allowed to do whatever you want. You get access to a large amount of free OP (operator) commands to use whenever you like, as well as a few server plugins, such as WorldEdit and DisguiseCraft. To make your experience fresh and lag-free, the server will reset once every day.</p>
<a href="#join" class="button">Join Server</a>
2015-12-11 20:26:33 +00:00
</div>
</div>
2016-12-22 18:53:29 +00:00
<div id="join" class="main">
<div class="main-container">
<h1>Join Server</h1>
<p>If you want to join the server, simply add the IP "flame.ga" 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-22 18:53:29 +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 five minutes.</p>
2016-12-22 18:55:41 +00:00
<a href="https://github.com/flameserver/downloads/archive/schematics.zip" class="button">Schematics</a>
<a href="https://github.com/flameserver/downloads/archive/worlds.zip" 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:' ','' }}