mirror of
https://github.com/ArchipelagoMW/Archipelago.git
synced 2026-03-30 09:33:22 -07:00
31 lines
1.3 KiB
HTML
31 lines
1.3 KiB
HTML
{% extends 'pageWrapper.html' %}
|
|
|
|
{% block head %}
|
|
{% include 'header/grassHeader.html' %}
|
|
<title>Archipelago Guides</title>
|
|
<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") }}"/>
|
|
{% endblock %}
|
|
|
|
{% block body %}
|
|
<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 {{ file_data.authors | join(", ") }}
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endfor %}
|
|
{% endfor %}
|
|
</div>
|
|
{% endblock %}
|