mirror of
https://github.com/Leaflet/Leaflet.git
synced 2025-08-15 22:36:58 +00:00
26 lines
656 B
HTML
26 lines
656 B
HTML
{% assign filteredplugins = site.plugins | where: "category", include.category %}
|
|
|
|
<table class="plugins"><tr><th>Plugin</th><th>Description</th><th>Demo</th><th>Maintainer</th></tr>
|
|
{% for plugin in filteredplugins %}
|
|
<tr>
|
|
<td><a class="plugin-repo-url" href="{{ plugin.repo }}">{{ plugin.name }}</a></td>
|
|
<td>
|
|
{{ plugin.content }}
|
|
<div class="repo-data"></div>
|
|
</td>
|
|
<td>
|
|
{% if plugin.demo %}
|
|
<a href="{{ plugin.demo }}">Demo</a>
|
|
{% endif %}
|
|
</td>
|
|
<td>
|
|
{% if plugin.category %}
|
|
<a href="{{ plugin.author-url }}">{{ plugin.author }}</a>
|
|
{% else %}
|
|
{{ plugin.author }}
|
|
{% endif %}
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|