open-source-resources.html 361 B

123456789101112131415161718192021222324
  1. <table class="table">
  2. <tr>
  3. <th>
  4. Name
  5. </th>
  6. <th>
  7. Description
  8. </th>
  9. <th>
  10. License
  11. </th>
  12. </tr>
  13. {% for resource in open-source %}
  14. <tr>
  15. <td>
  16. <a href="{{ resource.url }}" target="_blank">
  17. {{ resource.name }}
  18. </a>
  19. </td>
  20. <td>{{ resource.description | escape }}</td>
  21. <td>{{ resource.license }}</td>
  22. </tr>
  23. {% endfor %}
  24. </table>