31 lines
827 B
XML
31 lines
827 B
XML
<div xmlns="http://www.w3.org/1999/xhtml">
|
|
<a name="intro"> </a>
|
|
<h3>Version History</h3>
|
|
|
|
<table class="grid">
|
|
<thead>
|
|
<tr>
|
|
<th>Version</th>
|
|
<th>Date</th>
|
|
<th>Status</th>
|
|
<th>Description</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for ver in site.data['package-list'].list %}
|
|
{% if ver.version != 'current' %}
|
|
<tr>
|
|
<td><a href="{{ver.path}}"><b>{{ver.version}}</b></a></td>
|
|
<td>{{ver.date}}</td>
|
|
<td><span class="badge">{{ver.status}}</span></td>
|
|
<td>{{ver.desc}}</td>
|
|
</tr>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
|
|
{% if site.data['package-list'] == nil %}
|
|
<p style="color: red;"><i>Notice: package-list.json not found in _data folder during build.</i></p>
|
|
{% endif %}
|
|
</div> |