2020-10-24 14:46:27 -04:00
|
|
|
{% extends 'pageWrapper.html' %}
|
2020-07-18 16:25:07 -04:00
|
|
|
|
2020-07-04 23:50:18 +02:00
|
|
|
{% block head %}
|
2020-12-02 23:48:10 -05:00
|
|
|
<title>MultiWorld</title>
|
2021-05-13 00:41:49 +02:00
|
|
|
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename="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 %}
|
2021-06-11 20:22:47 -04:00
|
|
|
{% include 'header/oceanHeader.html' %}
|
2020-07-18 16:25:07 -04:00
|
|
|
<div id="landing-wrapper">
|
2020-12-01 03:08:31 -05:00
|
|
|
<div id="landing-header">
|
2021-06-11 20:22:47 -04:00
|
|
|
<h1>ARCHIPELAGO</h1>
|
|
|
|
<h4>multiworld randomizer ecosystem</h4>
|
2020-12-01 03:08:31 -05:00
|
|
|
</div>
|
2020-12-02 21:27:29 -05:00
|
|
|
<div id="landing-links">
|
2021-06-12 02:49:36 -04:00
|
|
|
<a href="/games" id="mid-button">start<br />playing</a>
|
2021-06-11 20:22:47 -04:00
|
|
|
<a id="far-left-button"></a>
|
|
|
|
<a href="/tutorial" id="mid-left-button">setup guide</a>
|
|
|
|
<a id="far-right-button"></a>
|
|
|
|
<a href="https://discord.gg/8Z65BR2" id="mid-right-button">discord</a>
|
2020-12-01 16:44:24 -05:00
|
|
|
</div>
|
2020-12-01 17:59:09 -05:00
|
|
|
<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>
|
2020-11-30 21:54:33 -05:00
|
|
|
<div id="landing" class="grass-island">
|
2020-07-18 16:25:07 -04:00
|
|
|
<div id="landing-body">
|
2021-06-11 20:22:47 -04:00
|
|
|
<p id="first-line">Welcome to Archipelago!</p>
|
|
|
|
<p>
|
|
|
|
This is a cross-game modification system which randomizes different games, then uses the result to
|
|
|
|
build a single unified multi-player game. Items from one game may be present in another, and
|
|
|
|
you will need your fellow players to find items you need in their games to help you complete
|
|
|
|
your own.
|
|
|
|
</p>
|
2020-12-04 16:02:41 -05:00
|
|
|
<p>
|
|
|
|
This project is the cumulative effort of many
|
2021-06-06 22:14:13 +02:00
|
|
|
<a href="https://github.com/ArchipelagoMW/Archipelago/graphs/contributors">talented people.</a>
|
2020-12-04 16:02:41 -05:00
|
|
|
Together, they have spent countless hours creating a huge repository of
|
2021-06-06 22:14:13 +02:00
|
|
|
<a href="https://github.com/ArchipelagoMW/Archipelago">source code</a> which has turned
|
2020-12-04 16:05:14 -05:00
|
|
|
our crazy idea into a reality.
|
2020-12-04 16:02:41 -05:00
|
|
|
</p>
|
2020-12-02 23:48:10 -05:00
|
|
|
<p>
|
|
|
|
<span class="variable">{{ seeds }}</span>
|
|
|
|
games were created and
|
|
|
|
<span class="variable">{{ rooms }}</span>
|
2020-12-03 00:18:09 -05:00
|
|
|
were hosted in the last 7 days.
|
2020-12-02 23:48:10 -05:00
|
|
|
</p>
|
2020-07-04 23:50:18 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-11-30 21:54:33 -05:00
|
|
|
{% include 'islandFooter.html' %}
|
2020-07-18 16:25:07 -04:00
|
|
|
{% endblock %}
|