1
0
mirror of https://github.com/danog/gojekyll.git synced 2024-11-27 03:14:40 +01:00
gojekyll/commands/testdata/site/data.md
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>