mirror of
https://github.com/danog/gojekyll.git
synced 2024-11-27 03:14:40 +01:00
19 lines
244 B
Markdown
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>
|