From 6c22d90b90d26345327b01d197bd3f7a50fe193a Mon Sep 17 00:00:00 2001 From: richarddushime Date: Fri, 9 Jan 2026 13:44:53 +0100 Subject: [PATCH 1/3] Adira testimonial --- content/testimonials/testimonial6.md | 69 ++++++++++++++++++++++++++++ 1 file changed, 69 insertions(+) create mode 100644 content/testimonials/testimonial6.md diff --git a/content/testimonials/testimonial6.md b/content/testimonials/testimonial6.md new file mode 100644 index 00000000000..398bde4e6ea --- /dev/null +++ b/content/testimonials/testimonial6.md @@ -0,0 +1,69 @@ ++++ +widget = "blank" +headless = true # This file represents a page section. +active = true # Activate this widget? true/false +weight = 10 # Order that this section will appear. + +title = "" +subtitle = "" + +[design] + # Choose how many columns the section has. Valid values: 1 or 2. + columns = "1" + +[design.background] + + # Background color. + color = "#b0cdad" + + # Background gradient. + # gradient_start = "DeepSkyBlue" + # gradient_end = "SkyBlue" + + # Text color (true=light or false=dark). + text_color_light = false + +[design.spacing] + # Customize the section spacing. Order is top, right, bottom, left. + padding = ["60px", "0", "60px", "0"] + +[advanced] + # Custom CSS. + css_style = "font-size: 1rem;" + + # CSS class. + css_class = "" ++++ + +# Doing Good Research, Together: Growing with FORRT + +
+
+  Adira Daniel Portrait +
+
+ + + + + + + + + +
+
+ +
+ +I joined FORRT at the very beginning of my PhD, during a period shaped by COVID-19 lockdowns, when I was deeply motivated to do research well but still learning what that could look like in practice. I was searching for ways to meaningfully engage with metascience and to move beyond abstract commitments to open science toward concrete, values-driven research practices. +Participating in FORRT gave me exactly that. Through hands-on collaboration, mentorship, and shared reflection, I learned how to actively engage with open and reproducible research principles as an integrated part of my doctoral training. What began as volunteer involvement quickly became a formative space for growth — intellectually, professionally, and personally — grounded in learning with others. + +Now, as a FORRT Steward, I am especially grateful for the community that has supported me at every stage of my journey. FORRT continues to shape how I think about rigor, care, and responsibility in research, and it remains a community I am excited to keep building with — not just throughout my PhD, but well beyond it. + + +### **---Adira Daniel Ph.D. Candidate** From a05be21a863be22c9191e7a41eb007abbac06ce5 Mon Sep 17 00:00:00 2001 From: richarddushime Date: Wed, 21 Jan 2026 18:22:26 +0100 Subject: [PATCH 2/3] multi areas btn --- assets/scss/custom.scss | 1 + layouts/shortcodes/publication_list.html | 13 +++++++++---- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/assets/scss/custom.scss b/assets/scss/custom.scss index b657c9218a3..8a665081c09 100644 --- a/assets/scss/custom.scss +++ b/assets/scss/custom.scss @@ -213,6 +213,7 @@ article.article:has(table) .article-container { cursor: pointer; transition: all 0.2s ease; opacity: 0.8; + background-color: #e0e0e0; /* Default background color for all pills */ } .pub-pill:hover { diff --git a/layouts/shortcodes/publication_list.html b/layouts/shortcodes/publication_list.html index 56a7c2951bd..ea8d1369681 100644 --- a/layouts/shortcodes/publication_list.html +++ b/layouts/shortcodes/publication_list.html @@ -55,10 +55,15 @@

{{ $title | markdownify }}

{{ $typeLabel }} {{/* Focus Area Pill */}} - {{ if .focus_area }} - {{ $focusClass := printf "pill-%s" (.focus_area | urlize) }} - {{ .focus_area }} - {{ end }} + {{ if .focus_area }} + {{/* Always split on comma, works for both string and array */}} + {{ $focusAreas := split .focus_area "," }} + {{ range $i, $fa := $focusAreas }} + {{ $fa = trim $fa " " }} + {{ $focusClass := printf "pill-%s" ($fa | urlize) }} + {{ $fa }} + {{ end }} + {{ end }} {{ .year }} From 6a66a44fa86f524eebef9452d3cd1a859d558fe8 Mon Sep 17 00:00:00 2001 From: richarddushime Date: Wed, 21 Jan 2026 18:26:30 +0100 Subject: [PATCH 3/3] b --- assets/scss/custom.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/scss/custom.scss b/assets/scss/custom.scss index 8a665081c09..23177e66cf2 100644 --- a/assets/scss/custom.scss +++ b/assets/scss/custom.scss @@ -213,7 +213,7 @@ article.article:has(table) .article-container { cursor: pointer; transition: all 0.2s ease; opacity: 0.8; - background-color: #e0e0e0; /* Default background color for all pills */ + background-color: #e0e0e0; /* Default background color for all pills buttons */ } .pub-pill:hover {