Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: hutscape/project-includes
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: fd239ddcaf3d88d40b5af47647aeb9f78f5b608e
Choose a base ref
...
head repository: hutscape/project-includes
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: d1007beeda991ecffdcbb01b5813e82a3d1cfc09
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Mar 15, 2024

  1. Verified

    This commit was signed with the committer’s verified signature.
    sayanee Sayanee Basu
    Copy the full SHA
    d1007be View commit details
Showing with 37 additions and 0 deletions.
  1. +37 −0 bom/sbom.html
37 changes: 37 additions & 0 deletions bom/sbom.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{% if site.data.sbom %}
<section class="section is-small">
<div class="container">
<h2 class="title is-1">Software Bill of Materials</h2>
<div class="content is-large">
<table class="table is-bordered is-striped is-narrow is-hoverable">
<thead class="has-background-grey"></thead>
<tr>
{% for header in site.data.sbom[0] %}
{% if forloop.index == 2 %}
{% continue %}
{% endif %}
<th>{{ header[0] }}</th>
{% endfor %}
</tr>
</thead>
<tbody>
{% for row in site.data.sbom %}
<tr>
{% for cell in row %}
{% if forloop.index0 == 0 %}
{% assign name = cell[1] %}
{% elsif forloop.index0 == 1 %}
{% assign link = cell[1] %}
<td><a href="{{ link }}">{{ name }}</a></td>
{% else %}
<td>{{ cell[1] }}</td>
{% endif %}
{% endfor %}
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>
</section>
{% endif %}