+ {% for plugin in site.plugin-list %}
+
+
+
+ {% if limit > 0 and forloop.index >= limit %}
+ {% break %}
+ {% endif %}
+ {% assign row = forloop.index | modulo: 3 %}
+ {% if row == 0 %}
+
+
+
+ {% if plugin.link.size > 0 %}
+
+ {{ plugin.title }}
+ {% else %} +{{ plugin.title }}
+ {% endif %} +{{ plugin.content }}
+
+ {% endif %}
+ {% endfor %}
+
+