mirror of
https://github.com/lektor/lektor-website.git
synced 2025-01-31 06:22:55 +01:00
14 lines
277 B
HTML
14 lines
277 B
HTML
{% 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 %}
|