diff --git a/GRANTS.yaml b/GRANTS.yaml
index c7dff89e7965d4..0e125082a9ba7b 100644
--- a/GRANTS.yaml
+++ b/GRANTS.yaml
@@ -17,9 +17,9 @@
# url: "https://example.com" # homepage of the project
# funding_statement: "This project is funded with the support of .." # optional, if you want a specific bit of text to appear
# funding_id: 2020-1-NL01-KA203-064717 # id of your grant, will be used in combination with funding_database to link to offical grant page
-# funding_database: cordis|highergov|ukri|erasmusplus # Database where your project/grant is listed,
-# # EU grants are often listed in cordis, US grants in highergov, UK grants in ukri
-# # If your project is not present in one of these databases, please ping us.
+# funding_database: cordis|highergov|ukri|dfg|erasmusplus|anr # Database where your project/grant is listed,
+# # EU grants are often listed in cordis, US grants in highergov, UK grants in ukri
+# # If your project is not present in one of these databases, please ping us.
#
# Please add in alphabetical order of the key (id)
@@ -315,6 +315,18 @@ fondfrance:
funder_name: Fondation de France
funding_id: WB-2022-43290
+gaiadata:
+ name: Gaia Data
+ github: false
+ joined: 2022-06
+ avatar: "/training-material/assets/images/gaia_data.png"
+ url: https://www.gaia-data.org/
+ funding_id: "ProjetIA-21-ESRE-0010"
+ funding_id_display: "21-ESRE-0010"
+ funding_database: anr
+ funding_statement: |
+ This work was supported by the Agence Nationale de la Recherche as part of the “Investissements d’Avenir” Equipex+ Gaia Data program n°ANR-21ESRE-0010.
+
gallantries:
name: "Gallantries: Bridging Training Communities in Life Science, Environment and Health"
short_name: "Gallantries"
diff --git a/_includes/funding-statement-short.md b/_includes/funding-statement-short.md
index b1748fdefdcc2d..2dd9340356d3bf 100644
--- a/_includes/funding-statement-short.md
+++ b/_includes/funding-statement-short.md
@@ -11,7 +11,7 @@
{% if site.data.contributors[id].funding_id %}
- {{ site.data.contributors[id].funding_id }}
+ {{ site.data.contributors[id].funding_id_display | default: site.data.contributors[id].funding_id }}
{% endif %}
diff --git a/_layouts/contributor_index.html b/_layouts/contributor_index.html
index 9bc689c6dae508..e8d7133b26b197 100644
--- a/_layouts/contributor_index.html
+++ b/_layouts/contributor_index.html
@@ -359,10 +359,10 @@ External Links
{% if entity.funding_database %}
{% assign url = entity | fetch_funding_url %}
- {{ entity.funding_id }}
+ {{ entity.funding_id_display | default: entity.funding_id }}
{% else %}
-
{{ entity.funding_id }}
+
{{ entity.funding_id_display | default: entity.funding_id }}
{% endif %}
diff --git a/_plugins/gtn/contributors.rb b/_plugins/gtn/contributors.rb
index c99f6b1ef08bf6..dbd61c00aac638 100644
--- a/_plugins/gtn/contributors.rb
+++ b/_plugins/gtn/contributors.rb
@@ -237,6 +237,8 @@ def self.fetch_funding_url(contributor)
"https://www.highergov.com/contract/#{contributor['funding_id']}/"
when 'dfg'
"https://gepris-extern.dfg.de/gepris/projekt/#{contributor['funding_id']}?language=en"
+ when 'anr'
+ "https://anr.fr/#{contributor['funding_id']}"
else
Jekyll.logger.error "Unknown funding system #{contributor['funding_database']}. Please let us know so we can add support for it!"
'ERROR'
diff --git a/assets/images/gaia_data.png b/assets/images/gaia_data.png
new file mode 100644
index 00000000000000..846da92ced3d71
Binary files /dev/null and b/assets/images/gaia_data.png differ
diff --git a/bin/schema-grants.yaml b/bin/schema-grants.yaml
index f393d282916de6..a280035a91eaf3 100644
--- a/bin/schema-grants.yaml
+++ b/bin/schema-grants.yaml
@@ -106,9 +106,15 @@ mapping:
funding_id:
type: str
required: true
- description: The short identifier for your grant.
+ description: The short identifier for your grant. This will be used to construct the URL to your project page on the funding body's website.
_examples:
- 2020-1-NL01-KA203-064717
+ funding_id_display:
+ type: str
+ required: false
+ description: The short identifier for your grant. Only needed if the funding_id cannot be used to construct a url for to your project page. For example for ANR. Then put the id that should be shown to the user here.
+ _examples:
+ - 21-ESRE-0010
url:
type: str
description: associated webpage
@@ -123,6 +129,7 @@ mapping:
- ukri
- highergov
- dfg
+ - anr
funder_name:
type: str
description: A name for the agency providing the funding.
diff --git a/events/2026-05-18-galaxy-academy.md b/events/2026-05-18-galaxy-academy.md
index fad1f065e55b7a..f92f63a9233b57 100644
--- a/events/2026-05-18-galaxy-academy.md
+++ b/events/2026-05-18-galaxy-academy.md
@@ -38,6 +38,7 @@ tags:
- variant-analysis
- climate
- humanities
+- ecology
contributions:
organisers:
@@ -92,6 +93,7 @@ contributions:
- Oliver_Rupp
- oschwengers
- pauldg
+ - PaulineSGN
- paulzierep
- pavanvidem
- plushz
@@ -111,6 +113,7 @@ contributions:
- tcollins2011
- nomadscientist
- wm75
+ - yvanlebras
funding:
- eurosciencegateway
- biont
@@ -121,6 +124,8 @@ contributions:
- abromics
- ifb
- FAIR2Adapt
+ - pndb
+ - dataterra
location:
name: online
@@ -251,6 +256,8 @@ program:
link: events/tracks/gta2026-climate.md
- title: Digital Humanities
link: events/tracks/gta2026-dh.md
+ - title: Ecology
+ link: events/tracks/gta2026-ecology.md
- title: From Zero to Hero with Python
link: events/tracks/gta2026-bioNT.md
- title: Machine Learning
diff --git a/events/tracks/gta2026-ecology.md b/events/tracks/gta2026-ecology.md
new file mode 100644
index 00000000000000..53fd4168427e6c
--- /dev/null
+++ b/events/tracks/gta2026-ecology.md
@@ -0,0 +1,40 @@
+---
+layout: event-track
+
+title: Ecology
+description: Learn all about Biodiversity data treatment on Galaxy. Start with the tutorial at your own pace. If you need support contact us via the Slack Channel [gta_ecology](https://gtnsmrgsbord.slack.com/channels/{{page.slack_channel}}). {% icon galaxy-info %} #**The workflows used for this track where tested thoroughly on the EU server, please use usegalaxy.eu for this track!**
+
+slack_channel: gta_ecology
+
+contributions:
+ organisers:
+ - yvanlebras
+ instructors:
+ - PaulineSGN
+ - Marie59
+ - yvanlebras
+ funding:
+ - dataterra
+ - pndb
+ - gaiadata
+
+program:
+ - section: "Ecology / Biodiversity data treatment"
+ description: |
+ If you encounter any issue please ask us in this Slack channel.
+ tutorials:
+ - name: biodiversity-data-exploration
+ topic: ecology
+ - name: gbif_cleaning
+ topic: ecology
+ - name: SAM3
+ topic: ecology
+ - name: yolo_predict_deepsea
+ topic: ecology
+ - name: PAMPA-toolsuite-tutorial
+ topic: ecology
+ - name: obisindicators
+ topic: ecology
+ - name: panoply_ebv
+ topic: ecology
+---