Files
BD-Core-FHIR-IG/input/pagecontent/history.xml
Dr. B. M. Riazul Islam b3cf356b32
All checks were successful
FHIR IG CI/CD Pipeline with Version Persistence / build-ig (push) Successful in 6m49s
FHIR IG CI/CD Pipeline with Version Persistence / deploy (push) Successful in 9s
modified history template
2026-03-07 02:53:09 +06:00

48 lines
1.4 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>
{% if site.data.package-list %}
<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 %}
{% if entry.version != 'current' %}
<tr>
<td><a href="{{ entry.path }}">{{ entry.version }}</a></td>
<td>{{ entry.date }}</td>
<td>{{ entry.status }}</td>
<td>{{ entry.desc }}</td>
</tr>
{% endif %}
{% endfor %}
</tbody>
</table>
<p><b>Continuous Integration Build</b></p>
{% for entry in site.data.package-list.list %}
{% if entry.version == 'current' %}
<p>The latest development build is available at: <a href="{{ entry.path }}">{{ entry.path }}</a></p>
<p><i>Note: This is a continuous integration build and may be unstable.</i></p>
{% endif %}
{% endfor %}
{% else %}
<p><i>Version history not available.</i></p>
{% endif %}
</div>