switch to main homepage help links in index

This commit is contained in:
c 2023-09-25 14:42:27 +02:00
parent 458c7496e3
commit 226be35856
1 changed files with 3 additions and 3 deletions

View File

@ -23,13 +23,13 @@ nav_pill: home
{% endif %}
<h1>Games</h1>
<p>There are a few game servers running. To connect, simply start the game and connect to this domain. See also the <a href="help.html">Help</a> section for more information.</p>
<p>There are a few game servers running. To connect, simply start the game and connect to this domain. See also the <a target="_blank" href="https://onfoss.org/help.html">Help</a> section for more information.</p>
<table class="table">
<tbody>
{% assign sorted_games = site.data.games | sort: "title" %}
{% for game in sorted_games %}
<tr>
<td><a href="help_{{ game.name }}.html"><img src="assets/img/{{ game.name }}.png" height="64" alt="Tiny screenshot of {{ game.title }}"></a></td>
<td><a target="_blank" href="https://onfoss.org/help_{{ game.name }}.html"><img src="assets/img/{{ game.name }}.png" height="64" alt="Tiny screenshot of {{ game.title }}"></a></td>
<td>{{ game.title }}</td>
<td>
{{ game.description }}
@ -37,7 +37,7 @@ nav_pill: home
<br><mark>Warning:</mark> {{ game.warning }}
{% endif %}
</td>
<td><a href="help_{{ game.name }}.html" class="link-secondary">More info</a></td>
<td><a target="_blank" href="https://onfoss.org/help_{{ game.name }}.html" class="link-secondary">More info</a></td>
</tr>
{% endfor %}
</tbody>