Skip to content

Commit 50824da

Browse files
committed
Add template for global usage page
1 parent 31cbf8b commit 50824da

File tree

3 files changed

+39
-8
lines changed

3 files changed

+39
-8
lines changed

_data/global_usages.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
- name: ELIXIR TeSS (Training eSupport System)
2+
url: https://tess.elixir-europe.org/
3+
description: The original TeSS portal, computational resources for life sciences for ELIXIR Europe
4+
- name: Digital Research Skills Australasia (DReSA)
5+
url: https://dresa.org.au/
6+
description: Browsing, discovering and organising digital research events and training resources
7+
- name: PaN Training Catalogue
8+
url: https://pan-training.eu/
9+
description: Training for photon & neutron science around Europe
10+
- name: Taxila
11+
url: https://taxila.nl/
12+
description: Collection of trainers, events, and materials empowering research in the Netherlands
13+
- name: SciLifeLab Training Portal
14+
url: https://training.scilifelab.se/
15+
description: Training for life science professionals across Sweden
16+
- name: EVERSE Training
17+
url: https://everse-training.app.cern.ch/
18+
description: Training and events to foster research software quality in Europe
19+
- name: Explora
20+
url: https://explora.alliancecan.ca/
21+
description: Canadian digital research infrastructure training (Digital Research Alliance of Canada)

_includes/global-usages.html

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{% assign usages = site.data.global_usages %}
2+
3+
<div id="usages" class="row row-cols-1 row-cols-md-2 gy-4">
4+
{% for usage in usages %}
5+
<div class="global-usage col d-grid">
6+
<div class=" bg-light p-2">
7+
<h3 class="mt-0"><a href="{{ usage.url }}" target="_blank">{{ usage.name }}</a></h3>
8+
<p>{{ usage.description }}</p>
9+
</div>
10+
</div>
11+
{% endfor %}
12+
</div>

pages/global.md

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,11 @@ title: Global usage
33
---
44

55
TeSS is an open source, reusable software platform, and has been
6-
deployed by several other communities across the globe:
6+
deployed by several other communities across the globe.
77

8-
- [ELIXIR TeSS (computational resources for life sciences in Europe)](https://tess.elixir-europe.org/)
9-
- [Digital Research Skills Australasia](https://dresa.org.au/)
10-
- [Photon and Neutron (PaN) training (Europe)](https://pan-training.eu/)
11-
- [Taxila: Open science training in the Netherlands](https://taxila.nl)
12-
- [SciLifeLab Sweden](https://training.scilifelab.se/)
13-
- [EVERSE Training (Research Software Quality Europe)](https://everse-training.app.cern.ch/)
14-
- [Explora: discover Canadian DRI training](https://explora.alliancecan.ca/)
8+
## Global instances of the TeSS platform
9+
{% include global-usages.html %}
1510

11+
## Add your TeSS instance
12+
If you are maintaining an instance of TeSS and would like us to include it here,
13+
please [contact us](contact).

0 commit comments

Comments
 (0)