modified history template
All checks were successful
FHIR IG CI/CD Pipeline with Version Persistence / build-ig (push) Successful in 5m41s
FHIR IG CI/CD Pipeline with Version Persistence / deploy (push) Successful in 8s

This commit is contained in:
2026-03-07 05:20:59 +06:00
parent 18f71a6a04
commit 665ba07e37

View File

@@ -1,12 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?> <div xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://hl7.org/fhir ../../input-cache/schemas/R5/fhir-single.xsd">
<div xmlns="http://www.w3.org/1999/xhtml"> <a name="intro"> </a>
<p><b>Version History</b></p> <h3>Version History</h3>
<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>This page provides the version history for the Bangladesh Core FHIR Implementation Guide.</p> <a name="published"> </a>
<h4>Published Versions</h4>
<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"> <table class="grid">
<thead> <thead>
<tr> <tr>
@@ -17,24 +20,25 @@
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
{% for entry in site.data['package-list'].list %} {% for ver in site.data.info.versions %}
{% if entry.version != 'current' %} {% if ver.id != 'current' %}
<tr> <tr>
<td><a href="{{entry.path}}"><b>{{entry.version}}</b></a></td> <td><a href="{{ver.url}}"><b>{{ver.id}}</b></a></td>
<td>{{entry.date}}</td> <td>{{ver.date}}</td>
<td>{{entry.status}}</td> <td>{{ver.status}}</td>
<td>{{entry.desc}}</td> <td>{{ver.desc}}</td>
</tr> </tr>
{% endif %} {% endif %}
{% endfor %} {% endfor %}
</tbody> </tbody>
</table> </table>
<p><b>Continuous Integration Build</b></p> <a name="ci"> </a>
{% for entry in site.data['package-list'].list %} <h4>Continuous Integration Build</h4>
{% if entry.version == 'current' %} {% for ver in site.data.info.versions %}
{% if ver.id == 'current' %}
<div style="background-color: #f8f9fa; padding: 10px; border-left: 5px solid #007bff; margin-top: 10px;"> <div style="background-color: #f8f9fa; padding: 10px; border-left: 5px solid #007bff; margin-top: 10px;">
<p>Latest development build is available at: <a href="{{entry.path}}">{{entry.path}}</a></p> <p>Latest development build is available at: <a href="{{ver.url}}">{{ver.url}}</a></p>
</div> </div>
{% endif %} {% endif %}
{% endfor %} {% endfor %}