Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions content/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ description = "Foundational tools for single-cell omics data analysis"
name = "SnapATAC2"
description = "Single-cell ATAC analysis framework"
url = "https://scverse.org/SnapATAC2/"
no_icon = true

[[packages]]
name = "rapids-singlecell"
Expand Down
6 changes: 5 additions & 1 deletion layouts/partials/main/packages.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,11 @@
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-6 py-3">
<div class="card border-0 bh-light px-3" id="{{ .name }}-tile">
<div class="package-icon my-4">
<img src="img/icons/{{ .name }}.svg" alt="Logo for {{ .name }}" />
{{ if not .no_icon }}
<img src="img/icons/{{ lower .name }}.svg" alt="Logo for {{ .name }}" />
{{ else }}
<img />
{{ end }}
Comment thread
flying-sheep marked this conversation as resolved.
Outdated
</div>
<div class="card-body package-text p-2">
<a
Expand Down