lektor-website/templates/plugin-tag.html

14 lines
277 B
HTML
Raw Normal View History

{% extends "plugins.html" %}
{% block body %}
<h1>Tag: {{ this.tag }}</h1>
<h2>Plugins:</h2>
<ul>
{% for i in this.items %}
<li><a href="{{ i|url }}">{{ i._id }}</a></li>
{% else %}
<li><em>No items.</em></li>
{% endfor %}
</ul>
{% endblock %}