website/index.html

48 lines
1.8 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>
2016-12-22 21:08:39 +00:00
<span><a href="#play" title="Play" class="play"></a></span>
2016-12-22 18:53:29 +00:00
<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>
2016-12-22 21:08:39 +00:00
<p>Flame.ga 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">
2016-12-22 21:08:39 +00:00
<h1>Play</h1>
<p>If you want to play on Flame.ga, 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-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>
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:' ','' }}