Files
BD-Core-FHIR-IG/input/pagecontent/history.xml
Dr. B. M. Riazul Islam 83ad838fc4
All checks were successful
FHIR IG CI/CD Pipeline with Version Persistence / build-ig (push) Successful in 6m40s
FHIR IG CI/CD Pipeline with Version Persistence / deploy (push) Successful in 9s
removed js from template
2026-03-07 04:42:27 +06:00

41 lines
1.3 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<div xmlns="http://www.w3.org/1999/xhtml">
<p><b>Version History</b></p>
<p>This page provides the version history for the Bangladesh Core FHIR Implementation Guide.</p>
<p>For a machine-readable version history, see <a href="package-list.json">package-list.json</a>.</p>
<p><b>Published Versions</b></p>
<table class="grid">
<thead>
<tr>
<th>Version</th>
<th>Date</th>
<th>Status</th>
<th>Description</th>
</tr>
</thead>
<tbody>
{% for entry in site.data['package-list'].list %}
{% unless entry.version == 'current' %}
<tr>
<td><a href="{{entry.path}}"><b>{{entry.version}}</b></a></td>
<td>{{entry.date | default: 'N/A'}}</td>
<td><span class="badge">{{entry.status | default: 'unknown'}}</span></td>
<td>{{entry.desc}}</td>
</tr>
{% endunless %}
{% endfor %}
</tbody>
</table>
<p><b>Continuous Integration Build</b></p>
{% for entry in site.data['package-list'].list %}
{% if entry.version == 'current' %}
<div style="background-color: #f8f9fa; padding: 10px; border-left: 5px solid #007bff; margin-top: 10px;">
<p>Latest development build: <a href="{{entry.path}}">{{entry.path}}</a></p>
</div>
{% endif %}
{% endfor %}
</div>