Skip to content

Commit

Permalink
Update dataset.html
Browse files Browse the repository at this point in the history
  • Loading branch information
tsalo committed Aug 1, 2024
1 parent ff5cf3d commit ead2154
Showing 1 changed file with 22 additions and 24 deletions.
46 changes: 22 additions & 24 deletions _layouts/dataset.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,32 +14,30 @@ <h1>{{ page.title }}</h1>
</tr>
</thead>
<tbody>
{% for post in site.categories.dataset %}
<tr>
<td><a href="{{ post.website }}">Link</a></td>
<td>{{ post.scanner }}</td>
<td>{{ post.echoes | join: ", " }}</td>
<td>
<tr>
<td><a href="{{ page.website }}">Link</a></td>
<td>{{ page.scanner }}</td>
<td>{{ page.echoes | join: ", " }}</td>
<td>
<ul>
{% for extra in post.extras %}
<li>
{% if extra == "asl" %}
Concurrent ASL
{% elsif extra == "complex" %}
Complex-valued BOLD
{% elsif extra == "norf" %}
Noise scans
{% elsif extra == "physio" %}
Concurrent physiological monitoring
{% elsif extra == "single-echo" %}
Comparison single-echo BOLD
{% endif %}
</li>
{% for extra in page.extras %}
<li>
{% if extra == "asl" %}
Concurrent ASL
{% elsif extra == "complex" %}
Complex-valued BOLD
{% elsif extra == "norf" %}
Noise scans
{% elsif extra == "physio" %}
Concurrent physiological monitoring
{% elsif extra == "single-echo" %}
Comparison single-echo BOLD
{% endif %}
</li>
{% endfor %}
</ul>
</td>
</tr>
{% endfor %}
</ul>
</td>
</tr>
</tbody>
</table>

Expand Down

0 comments on commit ead2154

Please sign in to comment.