123456789101112131415161718192021222324252627282930313233 |
- <div class="table-scrollable" style="height: 310px;">
- <table>
- <thead>
- <th>Version</th>
- <th>Release date</th>
- <th>Details</th>
- </thead>
- <tbody>
- {{range $i, $page := .Page.Pages.ByDate.Reverse }}
- <tr>
- <td>
- {{if $page.RelPermalink}}
- <a href="{{.Page.RelPermalink}}">{{$page.File.ContentBaseName}}</a>
- {{else}}
- {{$page.File.ContentBaseName}}
- {{end}}
- </td>
- <td>
- {{$page.Date.Format "January 2, 2006"}}
- </td>
- <td>
- {{if not $page.Params.released}}
- <em>Not yet released.</em>
- {{else if not $page.RelPermalink}}
- See the <a href="https://materialize.com/changelog">Changelog</a> for any significant user-facing changes.
- {{end}}
- </td>
- </tr>
- {{end}}
- </tbody>
- </table>
- </div>
|