2018-05-05 08:34:17 +02:00
|
|
|
{% extends "plugins.html" %}
|
2018-04-21 00:52:22 +02:00
|
|
|
{% from "macros/plugins.html" import render_category_nav %}
|
2018-05-05 08:34:17 +02:00
|
|
|
|
2018-04-21 00:52:22 +02:00
|
|
|
{% block body %}
|
2018-05-05 08:34:17 +02:00
|
|
|
<h1>{{ this.title }}</h1>
|
|
|
|
{% call render_full_width_blocks(this.body.blocks, classes='col-md-12') %}
|
|
|
|
{% endcall %}
|
|
|
|
<ul>
|
|
|
|
{% for category in site.query('/plugin-categories') %}
|
|
|
|
<li><h3>
|
|
|
|
<a href="{{ category|url }}">{{ category.title }}</a>
|
|
|
|
</h3></li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
2018-04-21 00:52:22 +02:00
|
|
|
{% endblock %}
|