diff --git a/site/_config.yml b/site/_config.yml index 816e1990a..18064f33e 100644 --- a/site/_config.yml +++ b/site/_config.yml @@ -170,6 +170,7 @@ page_gen: collections: - contributors - casestudies + - plugin-list versioning: true latest: v0.17.1 diff --git a/site/_includes/plugins.html b/site/_includes/plugins.html new file mode 100644 index 000000000..b9be22bfd --- /dev/null +++ b/site/_includes/plugins.html @@ -0,0 +1,28 @@ +
+
+
+ {% for plugin in site.plugin-list %} +
+
+
+ {% if plugin.link.size > 0 %} +
{{ plugin.title }}
+ {% else %} +
{{ plugin.title }}
+ {% endif %} +

{{ plugin.content }}

+
+
+
+ {% if limit > 0 and forloop.index >= limit %} + {% break %} + {% endif %} + {% assign row = forloop.index | modulo: 3 %} + {% if row == 0 %} +
+
+ {% endif %} + {% endfor %} +
+
+
diff --git a/site/_includes/site-header.html b/site/_includes/site-header.html index a7800b394..21fb1176a 100644 --- a/site/_includes/site-header.html +++ b/site/_includes/site-header.html @@ -8,6 +8,7 @@
  • Blog
  • Community
  • Documentation
  • +
  • Plugins
  • Resources