From 37a3e357c08107d382e38d1550273ac557ffca77 Mon Sep 17 00:00:00 2001 From: Matthias Mair Date: Mon, 23 Jan 2023 13:39:12 +0100 Subject: [PATCH] Add plugin highlight --- _includes/block/plugins.html | 19 +++++++++++++++++++ index.md | 1 + 2 files changed, 20 insertions(+) create mode 100644 _includes/block/plugins.html diff --git a/_includes/block/plugins.html b/_includes/block/plugins.html new file mode 100644 index 00000000..ecf312b0 --- /dev/null +++ b/_includes/block/plugins.html @@ -0,0 +1,19 @@ +
+
+
+

Plugin Repository

+

+ Explore plugins provided by the community. + Learn More Arrow pointing right +

+
+
+ {% assign filtered_repo = site.repo | sort: 'last-modified-date' | reverse %} + {% for plugin in filtered_repo limit:2 %} +
+ {% include plugin_card.html plugin=plugin %} +
+ {% endfor %} +
+
+
\ No newline at end of file diff --git a/index.md b/index.md index b4d47658..4c11b637 100644 --- a/index.md +++ b/index.md @@ -22,3 +22,4 @@ main_page: True {% include block/cta.html cta=site.data.ctas.end %} +{% include block/plugins.html %}