Files
BD-Core-FHIR-IG/input/pagecontent/history.xml
Dr. B. M. Riazul Islam 57aba6ddc6
All checks were successful
FHIR IG CI/CD Pipeline with Version Persistence / build-ig (push) Successful in 5m36s
FHIR IG CI/CD Pipeline with Version Persistence / deploy (push) Successful in 8s
modified history template and workflow
2026-03-07 05:32:12 +06:00

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>