+ {% if page.deprecationNotice %} +
+ {{ + partial('partial/notification', { + type: 'danger', + title: 'DEPRECATION NOTICE', + text: page.deprecationNotice + }) + }} +
+ {% endif %} +
+
+ {% for plugin in site.data[page.data] %} + {{ + partial('partial/whisperbox', { + className: 'o-grid__column--1-1 o-grid__column--large-1-3', + title: plugin.name, + text: __(plugin.description), + link: { + text: __('plugins_page.learn_more_link'), + href: plugin.link + } + }) + }} + {% endfor %} +
+
+