1
0
mirror of https://github.com/tabler/tabler.git synced 2025-12-22 01:44:25 +04:00
Files
tabler/shared/includes/docs/open-source-resources.html
Paweł Kuna f8075f69c0 Add documentation for 3rd-party libraries and resources (#2356)
Co-authored-by: Kevin Papst <kevinpapst@users.noreply.github.com>
Co-authored-by: Bartłomiej Gawęda <bagaweda@gmail.com>
2025-05-12 22:14:42 +02:00

24 lines
361 B
HTML

<table class="table">
<tr>
<th>
Name
</th>
<th>
Description
</th>
<th>
License
</th>
</tr>
{% for resource in open-source %}
<tr>
<td>
<a href="{{ resource.url }}" target="_blank">
{{ resource.name }}
</a>
</td>
<td>{{ resource.description | escape }}</td>
<td>{{ resource.license }}</td>
</tr>
{% endfor %}
</table>