final touches

This commit is contained in:
Nasir Anthony Montalvo
2026-01-17 01:42:43 -06:00
parent 16adda8c47
commit efe73df1e5
30 changed files with 454 additions and 293 deletions

14
_includes/data-table.html Normal file
View File

@@ -0,0 +1,14 @@
{% assign fields = site.data.config-table | map: 'display_name' %}
<div class="table-responsive-md">
<table id="item-table" class="table table-striped">
<thead>
<tr>
{% for f in fields %}
<th scope="col">{{ f }}</th>
{% endfor %}
<th>Link</th>
</tr>
</thead>
</table>
</div>