1
0
mirror of https://github.com/danog/gojekyll.git synced 2024-11-30 09:49:00 +01:00
gojekyll/commands/testdata/site/data.md

19 lines
244 B
Markdown
Raw Permalink Normal View History

2017-07-26 16:01:26 +02:00
---
---
## 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>