Files
bqkc/_layouts/data.html
Nasir Anthony Montalvo 526096840e Initial commit
2025-11-13 14:48:58 -06:00

23 lines
549 B
HTML

---
# "Data" page with table and data download options
layout: page
custom-foot: js/table-js.html
---
{% assign fields = site.data.config-table | map: 'display_name' %}
{% include data-download-modal.html %}
{{ content }}
<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>