1
0
mirror of https://github.com/danog/gojekyll.git synced 2024-12-03 14:47:50 +01:00
gojekyll/example/data.md
2017-08-10 12:27:51 -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>