Skip to content

Latest commit

 

History

History
49 lines (41 loc) · 1.03 KB

File metadata and controls

49 lines (41 loc) · 1.03 KB
title Tom testing CSV
<script src="https://code.jquery.com/jquery-3.5.1.js"></script> <script src="https://cdn.datatables.net/1.10.21/js/jquery.dataTables.min.js"></script>

Testing loading data from CSV file

List

Table

{% for row in site.data.test %} {% if forloop.first %} {% for pair in row %} {% endfor %} {% endif %}
{% tablerow pair in row %}
  {{ pair[1] }}
{% endtablerow %}

{% endfor %}

{{ pair[0] }}
<script> $('table').DataTable({ paging: false }); </script>