From e37c8a5f8975db1898074905cfd59396e28194c1 Mon Sep 17 00:00:00 2001 From: Kevin Papst Date: Wed, 10 Jul 2024 13:49:31 +0200 Subject: [PATCH] rollback store design --- _includes/store-list.html | 3 ++- _layouts/store.html | 10 +++++----- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/_includes/store-list.html b/_includes/store-list.html index dfc68f9ce..f830ebccb 100644 --- a/_includes/store-list.html +++ b/_includes/store-list.html @@ -21,7 +21,8 @@

diff --git a/_layouts/store.html b/_layouts/store.html index fc74fa29c..add69f6d9 100644 --- a/_layouts/store.html +++ b/_layouts/store.html @@ -47,35 +47,35 @@

Featured {% assign products = site.store | where: "lang", page.lang | where_exp:"product", "product.type == 'featured'" | sort: 'order', 'last' %} - {% include store-list-cards.html products=products %} + {% include store-list.html products=products %}
Support
{% assign products = site.store | where: "lang", page.lang | where_exp:"product", "product.type == 'support'" | sort: 'title' %} - {% include store-list-cards.html products=products %} + {% include store-list.html products=products %}
{{ site.data[page.lang].translation.store-category-apps }}
{% assign products = site.store | where: "lang", page.lang | where_exp:"product", "product.type == 'app'" | sort: 'title' %} - {% include store-list-cards.html products=products %} + {% include store-list.html products=products %}
{{ site.data[page.lang].translation.store-category-plugins }}
{% assign products = site.store | where: "lang", page.lang | where_exp:"product", "product.type == 'plugin'" | sort: 'title' %} - {% include store-list-cards.html products=products %} + {% include store-list.html products=products %}
{{ site.data[page.lang].translation.store-category-client }}
{% assign products = site.store | where: "lang", page.lang | where_exp:"product", "product.type == 'client'" %} - {% include store-list-cards.html products=products %} + {% include store-list.html products=products %}