version-list.html 928 B

123456789101112131415161718192021222324252627282930313233
  1. <div class="table-scrollable" style="height: 310px;">
  2. <table>
  3. <thead>
  4. <th>Version</th>
  5. <th>Release date</th>
  6. <th>Details</th>
  7. </thead>
  8. <tbody>
  9. {{range $i, $page := .Page.Pages.ByDate.Reverse }}
  10. <tr>
  11. <td>
  12. {{if $page.RelPermalink}}
  13. <a href="{{.Page.RelPermalink}}">{{$page.File.ContentBaseName}}</a>
  14. {{else}}
  15. {{$page.File.ContentBaseName}}
  16. {{end}}
  17. </td>
  18. <td>
  19. {{$page.Date.Format "January 2, 2006"}}
  20. </td>
  21. <td>
  22. {{if not $page.Params.released}}
  23. <em>Not yet released.</em>
  24. {{else if not $page.RelPermalink}}
  25. See the <a href="https://materialize.com/changelog">Changelog</a> for any significant user-facing changes.
  26. {{end}}
  27. </td>
  28. </tr>
  29. {{end}}
  30. </tbody>
  31. </table>
  32. </div>