mirror of
https://github.com/tabler/tabler.git
synced 2025-12-22 01:44:25 +04:00
Co-authored-by: Kevin Papst <kevinpapst@users.noreply.github.com> Co-authored-by: Bartłomiej Gawęda <bagaweda@gmail.com>
24 lines
361 B
HTML
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> |