Skip to content

Commit

Permalink
Update index.md
Browse files Browse the repository at this point in the history
  • Loading branch information
cthoyt committed Oct 19, 2023
1 parent 281e1c3 commit b7bbecf
Showing 1 changed file with 14 additions and 12 deletions.
26 changes: 14 additions & 12 deletions docs/index.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,21 @@
---
layout: home
layout: page
---
The latest export was made on {{ site.data.manifest.date }}.
The latest export was made on {{ site.data.manifest.date }}. The following software packages were used:

The following software packages were used:

{%- for row in site.data.manifest.versions -%}
- {{ row }}
{%- endfor -%}
<ul>
{% for row in site.data.manifest.versions %}
<li>{{ row[0] }} - {{ row[1] }}</li>
{% endfor %}
</ul>

<table>
<table class="table table-striped">
<thead>
<tr>
<th>Name</th>
<th>Terms</th>
<th>Synonyms</th>
<th>Xrefs</th>
<th>OBO</th>
<th>OWL</th>
<th>JSON</th>
Expand All @@ -25,13 +26,14 @@ The following software packages were used:
<tbody>
{% for resource in site.data.manifest.resources %}
<tr>
<td>{{ resource[0] }}</td>
<td>{{ resource[1].summary.terms }}</td>
<td>{{ resource[1].summary.synonyms }}</td>
<td><a href="https://bioregistry.io/{{ resource[0] }}"><code>{{ resource[0] }}</code></a></td>
<td align="right">{{ resource[1].summary.terms }}</td>
<td align="right">{{ resource[1].summary.synonyms }}</td>
<td align="right">{{ resource[1].summary.xrefs }}</td>
<td><a href="{{ resource[1].obo.iri }}">OBO</a></td>
<td><a href="{{ resource[1].owl.iri }}">OWL</a></td>
<td><a href="{{ resource[1].obograph.iri }}">JSON</a></td>
<td><a href="{{ resource[1].sssom.iri }}">SSSOM</a></td>
<td>{% if resource[1].summary.xrefs > 0 %}<a href="{{ resource[1].sssom.iri }}">SSSOM</a>{% endif %}</td>
<td><a href="{{ resource[1].nodes.iri }}">Nodes</a></td>
</tr>
{% endfor %}
Expand Down

0 comments on commit b7bbecf

Please sign in to comment.