Files
Grinch-AP/WebHostLib/templates/landing.html

51 lines
3.0 KiB
HTML
Raw Normal View History

{% extends 'pageWrapper.html' %}
2020-07-18 16:25:07 -04:00
2020-07-04 23:50:18 +02:00
{% block head %}
<title>Berserker's Multiworld</title>
<link rel="stylesheet" type="text/css" href="{{ static_autoversion("styles/landing.css") }}" />
2020-07-04 23:50:18 +02:00
{% endblock %}
2020-07-11 00:52:49 +02:00
2020-07-18 16:25:07 -04:00
{% block body %}
<div id="landing-wrapper">
<div id="landing-header">
<h4>the legend of zelda: a link to the past</h4>
<h1>MULTIWORLD RANDOMIZER</h1>
</div>
2020-12-02 21:27:29 -05:00
<div id="landing-links">
<a href="/generate" id="generate-button">start<br />playing</a>
<a href="/uploads" id="uploads-button">host<br />game</a>
<a href="/tutorial" id="setup-guide-button">setup guide</a>
<a href="/player-settings" id="player-settings-button">player settings</a>
<a href="https://discord.gg/8Z65BR2" id="discord-button">discord</a>
2020-12-01 16:44:24 -05:00
</div>
<div id="landing-clouds">
<img id="cloud1" src="/static/static/backgrounds/clouds/cloud-0001.png"/>
<img id="cloud2" src="/static/static/backgrounds/clouds/cloud-0002.png"/>
<img id="cloud3" src="/static/static/backgrounds/clouds/cloud-0003.png"/>
</div>
2020-12-02 21:27:29 -05:00
<div id="landing-decorations">
<img id="landing-deco-1" class="landing-deco deco-island" src="/static/static/decorations/island-b.png" />
<img id="landing-deco-2" class="landing-deco deco-island" src="/static/static/decorations/island-c.png" />
<img id="landing-deco-3" class="landing-deco deco-rock" src="/static/static/decorations/rock-a.png" />
<img id="landing-deco-4" class="landing-deco deco-rock" src="/static/static/decorations/rock-a.png" />
<img id="landing-deco-5" class="landing-deco deco-rock" src="/static/static/decorations/rock-a.png" />
<img id="landing-deco-6" class="landing-deco deco-rock" src="/static/static/decorations/rock-a.png" />
</div>
<div id="landing" class="grass-island">
2020-07-18 16:25:07 -04:00
<div id="landing-body">
2020-07-29 18:51:48 -04:00
<p>This is a <span data-tooltip="Allegedly.">randomizer</span> for The Legend of Zelda: A
Link to the Past.</p>
<p>This is also a multiworld, meaning it is multiplayer. Your items may be placed into other
players' worlds, and their items may be placed into yours. When a player picks up an item which
does not belong to them, it is sent back to the player it belongs to over the internet.</p>
<p>This website allows you to generate and host a multiworld game, and provides item and location
trackers for all games hosted here. To get started playing, <a href="/tutorial">click here.</a></p>
<p>This website is under active development. If you find a bug, please report it
<a href="https://github.com/Berserker66/MultiWorld-Utilities/issues">here.</a></p>
<p>{{ seeds }} games were created and {{ rooms }} hosted in the last 7 days.</p>
2020-07-04 23:50:18 +02:00
</div>
</div>
</div>
{% include 'islandFooter.html' %}
2020-07-18 16:25:07 -04:00
{% endblock %}