2021-01-03 17:46:47 -05:00
|
|
|
{% extends 'pageWrapper.html' %}
|
|
|
|
|
|
|
|
{% block head %}
|
|
|
|
{% include 'header/grassHeader.html' %}
|
|
|
|
<title>Archipelago Guides</title>
|
2025-08-02 21:12:58 +02:00
|
|
|
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename="styles/markdown.css") }}"/>
|
|
|
|
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename="styles/tutorialLanding.css") }}"/>
|
2021-01-03 17:46:47 -05:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block body %}
|
2025-08-02 21:12:58 +02:00
|
|
|
<div id="tutorial-landing" class="markdown">
|
|
|
|
<h1>Archipelago Guides</h1>
|
|
|
|
{% for world_name, world_type in worlds.items() %}
|
|
|
|
<h2 id="{{ world_type.game | urlencode }}">{{ world_type.game }}</h2>
|
|
|
|
{% for tutorial_name, tutorial_data in tutorials[world_name].items() %}
|
|
|
|
<h3>{{ tutorial_name }}</h3>
|
|
|
|
<p>{{ tutorial_data.description }}</p>
|
|
|
|
<p>This guide is available in the following languages:</p>
|
|
|
|
<ul>
|
|
|
|
{% for file_name, file_data in tutorial_data.files.items() %}
|
|
|
|
<li>
|
|
|
|
<a href="{{ url_for("tutorial", game=world_name, file=file_name) }}">{{ file_data.language }}</a>
|
|
|
|
by
|
|
|
|
{% for author in file_data.authors %}
|
|
|
|
{{ author }}
|
|
|
|
{% if not loop.last %}, {% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
</li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
{% endfor %}
|
|
|
|
{% endfor %}
|
2021-01-03 17:46:47 -05:00
|
|
|
</div>
|
2025-08-02 21:12:58 +02:00
|
|
|
{% endblock %}
|