-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsoftware.html
More file actions
44 lines (38 loc) · 1.14 KB
/
Copy pathsoftware.html
File metadata and controls
44 lines (38 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
---
layout: page
title: Software
permalink: /software/
---
<div class="publications">
<!-- Scholar Link -->
<p>
Visit the <a href="https://github.com/ChongLab" target="_blank" rel="noopener noreferrer">Chong Lab GitHub organization</a> for the full list.
</p>
<!-- Navigation Tags -->
<p>
<a href="#all">All</a>
{% assign tags = site.data.software | map: "tag" | uniq %}
{% for tag in tags %}
| <a href="#{{ tag }}">{{ tag }}</a>
{% endfor %}
</p>
<br>
<!-- Software List -->
<div id="all">
{% for software in site.data.software %}
<article class="software-card" id="{{ software.tag }}">
<h3>{{ software.name }}</h3>
<p class="software-description">
{{ software.description }}
</p>
<p>
<a href="{{ software.github }}" target="_blank" rel="noopener noreferrer">View source code and documentation</a>
</p>
</article>
{% endfor %}
</div>
</div>
<!-- Back to Top Button -->
<div style="text-align: center; margin-top: 3em;">
<a href="#top" style="font-weight: bold; text-decoration: underline;">Back to Top</a>
</div>