From 6789b0ea804aaf1aa09d2bfeb48e9fd0deb53a1c Mon Sep 17 00:00:00 2001 From: Gigi Date: Mon, 27 Feb 2023 12:10:03 +0100 Subject: [PATCH 1/2] Use public /data as Jekyll data source --- _config.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/_config.yml b/_config.yml index 24ce4af..c53eb67 100644 --- a/_config.yml +++ b/_config.yml @@ -2,4 +2,5 @@ markdown: rdiscount pygments: true auto: true title: Twentyone.World -tagline: Global Things Start Local \ No newline at end of file +tagline: Global Things Start Local +data_source: data From de0419e23a6f1a8f0817e6d1b3d8821d9767902b Mon Sep 17 00:00:00 2001 From: Gigi Date: Mon, 27 Feb 2023 12:10:06 +0100 Subject: [PATCH 2/2] Create list.md --- list.md | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 list.md diff --git a/list.md b/list.md new file mode 100644 index 0000000..7d8ad5f --- /dev/null +++ b/list.md @@ -0,0 +1,8 @@ +--- +layout: text +title: List +--- + +{% for country in site.data.countries %} +{{ country.name }} +{% endfor %}