mirror of
https://github.com/Leaflet/Leaflet.git
synced 2025-12-08 21:26:14 +00:00
* WIP: Minimal jekyll setup for handling the plugins webpage in a data-driven manner. * Docs: Jekyll collections config, whitespace * Add plugins * Remove special chars from names and remove default value from compatible-v0 * Push new plugin files * Rename to plugins.md * Update Plugins * Update links in plugins * Update Links * Move plugins into category folders * Add `template.md` and update PLUGIN-GUIDE.md * PR #6307 * PR #6971 * PR #7043 * PR #7130 * Fix Url #7442 * PR #7513 * Update Author #7554 * PR #7590 * PR #7640 * PR #7760 * Update template.md Co-authored-by: Iván Sánchez Ortega <ivan@sanchezortega.es>
23 lines
592 B
HTML
23 lines
592 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 href="{{ plugin.repo }}">{{ plugin.name }}</a></td>
|
|
<td>{{ plugin.content }}</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>
|