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.

40 lines
1.3KB

  1. ---
  2. layout: page
  3. ---
  4. <p align="center" id="compact_images">
  5. {% for module in site.modules %}
  6. <a href="{{site.baseurl}}/modules/{{ module.key }}.html"><img class="compact" src="{{ site.baseurl }}/screenshots/{{module.key }}.png" alt="{{module.name}} image"></a>
  7. {% endfor %}
  8. </p>
  9. {% assign latest_release = site.data.releases | last %}
  10. <h2> Current release </h2>
  11. <table>
  12. <tr><th>Version</th><td>{{ latest_release.version }}</td></tr>
  13. {% if latest_release.notes %}
  14. <tr>
  15. <th>Release notes</th><td>{{ latest_release.notes }}</td>
  16. </tr>
  17. {% endif %}
  18. <tr>
  19. <th rowspan="{{ latest_release.downloads | size}}">Download links</th>
  20. <td><a href="{{ latest_release.downloads[0].link }}">{{ latest_release.downloads[0].label }}</a></td>
  21. </tr>
  22. {% for download in latest_release.downloads offset:1 %}
  23. <tr><td><a href="{{ download.link }}">{{ download.label }}</a></td></tr>
  24. {% endfor %}
  25. </table>
  26. <h2>Documentation</h2>
  27. <p>
  28. Click on the module's images above to read the corresponding documentation.</br>
  29. You can also get the <a href="{{site.baseurl}}/modules">list of available modules</a>.
  30. </p>
  31. <h2>Issue tracker</h2>
  32. <p>
  33. Use the <a href="{{ site.github.repository_url }}/issues">issues tracker</a> to submit bug reports.</br>
  34. Feature requests are also welcome, but I can't promise you that I will do what you propose.
  35. </p>