You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
595B

  1. ---
  2. layout: page
  3. title: Releases
  4. ---
  5. <h1>Releases</h1>
  6. <table>
  7. {% for release in site.data.releases reversed %}
  8. <tr><th><h3>Version {{ release.version }}</h3></th><td></td></tr>
  9. {% if release.notes %}
  10. <tr><th>Release notes</th><td>{{ release.notes }}</td></tr>
  11. {% endif %}
  12. <tr>
  13. <th rowspan="{{ release.downloads | size}}">Download links</th>
  14. <td><a href="{{ release.downloads[0].link }}">{{ release.downloads[0].label }}</a></td>
  15. </tr>
  16. {% for download in release.downloads offset:1 %}
  17. <tr><td><a href="{{ download.link }}">{{ download.label }}</a></td></tr>
  18. {% endfor %}
  19. {% endfor %}
  20. </table>