mirror of
https://github.com/kaboomserver/website.git
synced 2024-12-22 07:45:00 +00:00
47 lines
1.9 KiB
HTML
47 lines
1.9 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 }}</title>
|
|
<meta name="description" content="{{ site.description }}">
|
|
<link rel="canonical" href="{{ site.url }}/">
|
|
<style type="text/css">
|
|
{% capture style %}
|
|
{% include fonts.css %}
|
|
{% include index.css %}
|
|
{% endcapture %}
|
|
{{ style | scssify }}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<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>
|
|
</div>
|
|
</div>
|
|
<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>
|
|
</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 five minutes.</p>
|
|
<a href="https://github.com/flameserver/downloads/archive/schematics.zip">Schematics</a>
|
|
<a href="https://github.com/flameserver/downloads/archive/worlds.zip">Worlds</a>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>{% endcapture %}{{ content | strip_newlines | replace:' ','' }}
|