1
0
Fork 0

Rename "Guides" tab to "Other Stuff1"

This commit is contained in:
Owen Ryan 2024-09-25 00:54:55 +01:00
parent 8f13b1e96e
commit a0edbdc444
3 changed files with 24 additions and 24 deletions

22
source/stuff.html Normal file
View file

@ -0,0 +1,22 @@
---
layout: main
permalink: /stuff/index.html
---
<div class="container">
<div class="row row-cols-1 row-cols-md-2 g-4">
{%- for thing in site.stuff -%}
<div class="col p-2">
<a class="card" href="{{ thing.url }}" style="text-decoration: none;">
{%- if thing.thumbnail_url -%}
<img src="{{ thing.thumbnail_url }}" class="card-img-top" alt="{{ thing.title }} thumbnail">
{%- endif -%}
<div class="card-body">
<h3 class="card-title text-body-emphasis">{{ thing.title }}</h3>
<p class="card-text">{{ thing.description }}</p>
</div>
</a>
</div>
{%- endfor -%}
</div>
</div>