Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
tsalo committed Aug 1, 2024
1 parent 3f52ed0 commit bce3df0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
{% assign echoes = echoes | concat: post.echoes %}
{% endfor %}

{% assign echoes = echoes | uniq %}
{% assign echoes = echoes | uniq | sort %}

<table>
<thead>
Expand All @@ -24,11 +24,11 @@
</tr>
</thead>
<tbody>
{% for post in dataset_posts %}
{% for post in site.categories.dataset %}
<tr>
<td>{{ post.title }}</td>
<td>{{ post.scanner }}</td>
{% for echo in unique_echoes %}
{% for echo in echoes %}
<td>
{% if echo in post.echoes %}
X
Expand Down

0 comments on commit bce3df0

Please sign in to comment.