From 333011f77c4db9df421c2bd2ac8605366b764e04 Mon Sep 17 00:00:00 2001 From: Chris Lowis Date: Tue, 16 Dec 2025 12:30:16 +0000 Subject: [PATCH] Show members grid on about page --- _includes/our_members.html | 14 ++++++++++++++ about.html | 2 ++ index.html | 15 +-------------- 3 files changed, 17 insertions(+), 14 deletions(-) create mode 100644 _includes/our_members.html diff --git a/_includes/our_members.html b/_includes/our_members.html new file mode 100644 index 0000000..95d23e4 --- /dev/null +++ b/_includes/our_members.html @@ -0,0 +1,14 @@ +
+

Our members

+

Meet the coops behind CoTech

+ +
+ {% for coop in site.coops %} + +
+ {{ coop.name }} +
+
+ {% endfor %} +
+
diff --git a/about.html b/about.html index 4ce76be..8cb29f2 100644 --- a/about.html +++ b/about.html @@ -42,3 +42,5 @@ layout: default Join the network + +{% include our_members.html %} diff --git a/index.html b/index.html index 88ec77d..be7b756 100644 --- a/index.html +++ b/index.html @@ -87,17 +87,4 @@ layout: default -
-

Our members

-

Meet the coops behind CoTech

- -
- {% for coop in site.coops %} - -
- {{ coop.name }} -
-
- {% endfor %} -
-
+{% include our_members.html %}