mirror of
https://github.com/kaboomserver/website.git
synced 2024-12-22 07:45:00 +00:00
80 lines
2.8 KiB
HTML
80 lines
2.8 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 }}/">
|
|
<link rel="alternate" type="application/atom+xml" href="/feed.xml">
|
|
<style type="text/css">
|
|
{% capture css %}{% include fonts.css %}{% include index.css %}{% endcapture %}{{ css | scssify }}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="intro">
|
|
<div id="introcontainer">
|
|
<i></i>
|
|
<p>Flame.ga</p>
|
|
<h1>Free OP Server in Minecraft</h1>
|
|
<a href="#about" id="aboutbutton" title="About"></a>
|
|
<a href="#news" id="newsbutton" title="News"></a>
|
|
<a href="#feedback" id="feedbackbutton" title="Feedback"></a>
|
|
<a href="#downloads" id="downloadsbutton" title="Downloads"></a>
|
|
</div>
|
|
</div>
|
|
<div id="about">
|
|
<div id="aboutcontainer">
|
|
<h2>About</h2>
|
|
<p>
|
|
Flame.ga provides you a powerful experience in Minecraft. On this server, you can do whatever you want, without any consequenses; grief, troll, use hacks - you name it. 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 give you a fresh and lag-free experience, the server will reset once every day.
|
|
</p>
|
|
<div id="ip">
|
|
<span>IP</span>
|
|
<i>flame.ga</i>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div id="news">
|
|
<div id="newscontainer">
|
|
<h2>News</h2>
|
|
<ul>
|
|
{% for post in site.posts %}
|
|
<li>
|
|
{{ post.content }}
|
|
<span>{{ post.date | date: "%B %e, %Y" }}</span>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<div id="feedback">
|
|
<div id="feedbackcontainer">
|
|
<h2>Feedback</h2>
|
|
<p>
|
|
Do you have anything you would like to say about the server? Suggestions for new features? Send us your feedback below.
|
|
</p>
|
|
<form action="https://formspree.io/contact@flame.ga" method="POST">
|
|
<input type="hidden" name="_subject" value="New feedback submission for Flame.ga" />
|
|
<textarea name="message" rows="7" placeholder="Your message" required></textarea>
|
|
<input type="text" name="_gotcha" class="hide" />
|
|
<input type="text" name="_format" value="plain" class="hide" />
|
|
<input type="hidden" name="_next" value="/sent"/>
|
|
<button type="submit">Send</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
<div id="downloads">
|
|
<div id="downloadscontainer">
|
|
<h2>Downloads</h2>
|
|
<p>
|
|
Feel free to download a copy of the server's schematics and worlds. Updates 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:' ','' }}
|