From 39ad064c8dc0b9d87ef68acb70db3f6fde78d8c4 Mon Sep 17 00:00:00 2001 From: Matthias Mair Date: Sun, 6 Nov 2022 18:38:16 +0100 Subject: [PATCH] fix data reference --- _includes/block/team.html | 4 ++-- index.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/_includes/block/team.html b/_includes/block/team.html index c09caf65..2c707a11 100644 --- a/_includes/block/team.html +++ b/_includes/block/team.html @@ -2,11 +2,11 @@

OUR TEAM

-

{{ include.text }}

+

{{ include.data.text }}

- {% for item in include.team %} + {% for item in include.data.team %}
diff --git a/index.md b/index.md index 050e5fa7..b4d47658 100644 --- a/index.md +++ b/index.md @@ -18,7 +18,7 @@ main_page: True {% include block/cta.html cta=site.data.ctas.newsletter %} {% include block/stats.html data=site.data.general.stats %} -{% include block/team.html cta=site.data.team %} +{% include block/team.html data=site.data.team %} {% include block/cta.html cta=site.data.ctas.end %}