fix back button

This commit is contained in:
Nycki 2025-03-15 16:05:16 -07:00
parent 7e8c989224
commit 3726d2732b
3 changed files with 8 additions and 2 deletions

View file

@ -20,7 +20,7 @@
<li><a href="{{ '/' | url }}">Start Over</a></li> <li><a href="{{ '/' | url }}">Start Over</a></li>
{% set previousPage = collections.pages | getPreviousCollectionItem %} {% set previousPage = collections.pages | getPreviousCollectionItem %}
{% if previousPage %} {% if previousPage %}
<li><a href="{{ previousPage.url }}">Go Back</a></li> <li><a href="{{ previousPage.url | url }}">Go Back</a></li>
{% endif %} {% endif %}
<li><a href="/">Home</a></li> <li><a href="/">Home</a></li>
</ul> </ul>

View file

@ -9,3 +9,9 @@ You awaken alone in a field. Beneath you the ground is scorched. The grass aroun
You were once a Grand Slime, the queen bee of a hive of slimes. Now youre barely a fraction of your old self. You were once a Grand Slime, the queen bee of a hive of slimes. Now youre barely a fraction of your old self.
</div> </div>
<div class="post">
[wow, I gotta get this code](https://git.hatspace.net/nycki/slime-quest-web)
</div>

View file

@ -12,7 +12,7 @@ main {
max-width: 40rem; max-width: 40rem;
background: #F0E0D6; background: #F0E0D6;
text-align: left; text-align: left;
margin: 0 auto; margin: 1rem auto;
padding: 1rem; padding: 1rem;
} }