mirror of
https://github.com/danog/gojekyll.git
synced 2024-11-30 09:49:00 +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>
|