23 lines
549 B
HTML
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>
|
|
|