diff --git a/example_workdir/site-config.json b/example_workdir/site-config.json
deleted file mode 100644
index a1eff92..0000000
--- a/example_workdir/site-config.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "name": "my blog",
- "baseUrl": "https://example.com",
-
- "coolProperty": 1231,
- "coolerProperty": {
- "isMap": "yes"
- }
-}
\ No newline at end of file
diff --git a/example_workdir/site-config.yml b/example_workdir/site-config.yml
new file mode 100644
index 0000000..6ba34c1
--- /dev/null
+++ b/example_workdir/site-config.yml
@@ -0,0 +1,10 @@
+name: my blog
+baseUrl: https://example.com
+
+coolProperty: 1231
+coolerProperty:
+ isMap: true
+ aList:
+ - a value
+ - another value
+ - check out site-config.yml!
\ No newline at end of file
diff --git a/example_workdir/template/article_template.html b/example_workdir/template/article_template.html
index 5eebe50..3708ac1 100644
--- a/example_workdir/template/article_template.html
+++ b/example_workdir/template/article_template.html
@@ -20,7 +20,12 @@
{{ site.name }} - {{ site.custom.coolerProperty.get('isMap') }}
{% endfor %}
+
+
+ {% for e in site.custom.coolerProperty.aList %}
+ - {{ e }}
+ {% endfor %}
+