1
0
Fork 0
owenryan.us/source/stuff.html

22 lines
754 B
HTML
Raw Normal View History

2024-09-24 23:54:55 +00:00
---
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>