lektor-website/templates/plugin-category.html

10 lines
336 B
HTML
Raw Normal View History

{% extends "layout.html" %}
{% from "macros/plugins.html" import render_category_nav,
render_plugin_list %}
{% block title %}Plugin Category {{ this.name }}{% endblock %}
{% block body %}
<h1>Plugin Category {{ this.name }}</h1>
{{ render_category_nav(active=this._id) }}
{{ render_plugin_list(this.children) }}
{% endblock %}