-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #52 from randovania/feature/extract-from-rdv
updates for 7.4.1
- Loading branch information
Showing
26 changed files
with
281 additions
and
215 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
This is the repository for the website at https://randovania.github.io/. | ||
This is the repository for the website at https://randovania.org/. | ||
|
||
It's created from html files at `static_website`, with the exported logic videos from the current Randovania release. | ||
It's built using Jekyll. To build and test locally, first run `ci.sh` then follow the [Github Pages instructions for local testing](https://docs.github.com/en/pages/setting-up-a-github-pages-site-with-jekyll/testing-your-github-pages-site-locally-with-jekyll). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
{% assign region = include.region %} | ||
|
||
<!-- table of contents --> | ||
<div class="card"> | ||
<h3 class="card-header" id="toc">Table of Contents</h3> | ||
<div class="card-body card-text"> | ||
{% for area in region.value %} | ||
<strong>{{ area.key }}</strong> | ||
<ul style="list-style: none;"> | ||
{% for node in area.value %} | ||
{% for connection in node.value %} | ||
{%- capture connection-name -%} | ||
{{ node.key }} → {{ connection.key }} | ||
{%- endcapture -%} | ||
<li> | ||
<a href="#{{ connection-name | slugify }}"> | ||
{{ connection-name }} | ||
</a> | ||
</li> | ||
{% endfor %} | ||
{% endfor %} | ||
</ul> | ||
{% endfor %} | ||
</div> | ||
</div> | ||
|
||
{% for area in region.value %} | ||
<div class="card my-2"> | ||
<h3 class="card-header">{{ area.key }}</h3> | ||
<div class="card-body card-text"> | ||
{% for node in area.value %} | ||
{% for connection in node.value %} | ||
{%- capture connection-name -%} | ||
{{ node.key }} → {{ connection.key }} | ||
{%- endcapture -%} | ||
<h5 class="card-title" id="{{ connection-name | slugify }}">{{ connection-name }}</h4> | ||
{% for video in connection.value %} | ||
<p class="fst-italic">{{ video.difficulty }}</p> | ||
{% include videos/video-embed.html yt-id=video.video_id start-time=video.start_time %} | ||
<p class="fst-italic"><a href="#top">Back to top</a></p> | ||
{% endfor %} | ||
{% endfor %} | ||
{% endfor %} | ||
</div> | ||
</div> | ||
{% endfor %} |
Oops, something went wrong.