1
0
mirror of https://github.com/danog/gojekyll.git synced 2025-01-23 08:01:18 +01:00
2017-07-26 10:17:53 -04:00

19 lines
244 B
Markdown

---
---
## YAML data
* {{ site.data.file_data.key }}
## JSON data
{{ site.data.json_data.key }}
## CSV data
<table>
{% for row in site.data.csv_data %}
<tr>{% for cell in row %}<td>{{ cell }}</td>{% endfor %}</tr>
{% endfor %}
</table>