diff --git a/assets/scss/custom.scss b/assets/scss/custom.scss index 02eb042583c..c1e05dfa947 100644 --- a/assets/scss/custom.scss +++ b/assets/scss/custom.scss @@ -40,18 +40,22 @@ article.article:has(table) .article-container { .pub-list { display: flex; flex-direction: column; - gap: 2rem; - margin-top: 2rem; + gap: 1rem; + /* Reduced from 2rem */ + margin-top: 1rem; + /* Reduced from 2rem */ } .pub-card { - background: #fff; - border-radius: 12px; + background: #FEFDF6; + border-radius: 8px; + /* Slightly tighter radius */ box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); border: 1px solid rgba(0, 0, 0, 0.05); transition: transform 0.2s ease, box-shadow 0.2s ease; overflow: hidden; - padding: 1.5rem; + padding: 1.25rem; + /* Reduced from 1.5rem */ } .pub-card:hover { @@ -63,79 +67,54 @@ article.article:has(table) .article-container { display: flex; justify-content: space-between; align-items: center; - margin-bottom: 0.75rem; -} - -.pub-badge { - padding: 0.25rem 0.75rem; - border-radius: 50px; - font-size: 0.75rem; - font-weight: 600; - text-transform: uppercase; - letter-spacing: 0.5px; -} - -.pub-badge-published { - background-color: #e6fcf5; - color: #0ca678; -} - -.pub-badge-preprint { - background-color: #fff3bf; - color: #f08c00; -} - -.pub-badge-policy-brief { - background-color: #ffe3e3; - color: #e03131; -} - -.pub-badge-op-ed { - background-color: #e7f5ff; - color: #1c7ed6; -} - -.pub-badge-under-review { - background-color: #f1f3f5; - color: #495057; + margin-bottom: 0.5rem; + /* Reduced from 0.75rem */ } .pub-year { - font-size: 0.9rem; + font-size: 0.85rem; + /* Slightly smaller */ color: #868e96; font-weight: 500; } .pub-title { - font-size: 1.25rem; + font-size: 1.05rem; + /* Reduced from 1.25rem */ font-weight: 700; color: #212529; - margin-bottom: 0.5rem; - line-height: 1.4; + margin-bottom: 0.25rem; + /* Reduced from 0.5rem */ + line-height: 1.35; } .pub-authors { - font-size: 0.95rem; + font-size: 0.85rem; + /* Reduced from 0.95rem */ color: #495057; - margin-bottom: 0.5rem; + margin-bottom: 0.25rem; + /* Reduced from 0.5rem */ } .pub-journal { - font-size: 0.9rem; + font-size: 0.85rem; + /* Reduced from 0.9rem */ color: #1c7ed6; font-weight: 500; - margin-bottom: 1rem; + margin-bottom: 0.75rem; + /* Reduced from 1rem */ } .pub-abstract-toggle { - margin-bottom: 0.5rem; + margin-bottom: 0.25rem; } .btn-toggle-abstract { background: none; border: none; color: #adb5bd; - font-size: 0.85rem; + font-size: 0.75rem; + /* Slightly smaller */ cursor: pointer; padding: 0; display: flex; @@ -158,13 +137,14 @@ article.article:has(table) .article-container { .pub-abstract { display: none; - margin-bottom: 1rem; - padding: 1rem; + margin-bottom: 0.75rem; + padding: 0.75rem; background: #f8f9fa; - border-radius: 8px; - font-size: 0.9rem; + border-radius: 6px; + font-size: 0.85rem; + /* Reduced */ color: #495057; - line-height: 1.6; + line-height: 1.5; } .pub-abstract.show { @@ -176,10 +156,11 @@ article.article:has(table) .article-container { } .pub-citation-section { - font-size: 0.85rem; + font-size: 0.8rem; + /* Reduced */ color: #83878c; - margin-bottom: 1.5rem; - padding-left: 1rem; + margin-bottom: 1rem; + padding-left: 0.75rem; border-left: 3px solid #dee2e6; } @@ -190,19 +171,268 @@ article.article:has(table) .article-container { align-items: center; gap: 1rem; margin-top: auto; - padding-top: 1rem; + padding-top: 0.75rem; border-top: 1px solid #f1f3f5; } .pub-buttons { display: flex; - gap: 0.5rem; + gap: 0.35rem; + /* Tighter buttons */ flex-wrap: wrap; } .pub-metrics { - min-height: 50px; display: flex; - gap: 10px; + gap: 8px; align-items: center; +} + +/* Pill Styles */ +.pub-tags { + margin-bottom: 8px; + /* Reduced from 15px */ + display: flex; + flex-wrap: wrap; + gap: 6px; +} + +.pub-pill { + display: inline-block; + padding: 0.2em 0.6em; + /* Compact padding */ + font-size: 0.75rem; + /* Smaller font */ + font-weight: 500; + line-height: 1.2; + text-align: center; + white-space: nowrap; + vertical-align: baseline; + border-radius: 50rem; + color: #333; + cursor: pointer; + transition: all 0.2s ease; + opacity: 0.8; +} + +.pub-pill:hover { + opacity: 1; +} + +.pub-pill.active { + opacity: 1 !important; + box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.2); +} + +/* Category Colors */ +.pill-publications { + background-color: #C6CFDA !important; +} + +.pill-preprints { + background-color: #E6DEB8 !important; +} + +.pill-policy-briefs { + background-color: #EAD9C7 !important; +} + +.pill-op-eds { + background-color: #E1C7C7 !important; +} + +.pill-teaching-materials { + background-color: #C9D6C3 !important; +} + +.pill-interactive-tools-apps { + background-color: #B8CCC9 !important; +} + +.pill-data-code-packages { + background-color: #BFCFC7 !important; +} + +.pill-working-papers { + background-color: #EFE7C8 !important; +} + +.pill-statements { + background-color: #DCCBC2 !important; +} + +.pill-affiliated-projects { + background-color: #DAD7CE !important; +} + +/* Focus Area Colors */ +.pill-meta-research-scientific-reform { + background-color: #C6CFDA !important; +} + +.pill-equity-diversity-social-justice { + background-color: #DCCBC2 !important; +} + +.pill-community-governance-sustainability { + background-color: #BFCFC7 !important; +} + + +/* -------------------------------------------------- */ +/* New Filter UI Styles (Pill Bar) */ +/* -------------------------------------------------- */ + + +.filter-container { + margin-bottom: 1rem; + padding: 0.75rem; + background-color: #fff; + /* Clean white background */ + border: 1px solid #eee; + border-radius: 8px; +} + +.filter-section-title { + font-size: 0.75rem; + font-weight: 700; + text-transform: uppercase; + color: #555; + margin-bottom: 0.35rem; + letter-spacing: 0.5px; +} + +.pill-bar { + display: flex; + flex-wrap: wrap; + gap: 6px; + /* Spacing between pills */ +} + +.filter-pill { + display: inline-block; + padding: 3px 10px; + font-size: 0.75rem; + border-radius: 50px; + /* Fully rounded */ + background-color: #f1f3f5; + /* Light grey base */ + color: #495057; + cursor: pointer; + transition: all 0.2s ease-in-out; + border: 1px solid transparent; + user-select: none; +} + +.filter-pill:hover { + background-color: #e9ecef; + color: #212529; +} + +.filter-pill.active { + background-color: #333; + /* Dark active state */ + color: #fff; + box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15); +} + +/* -------------------------------------------------- */ +/* intro pub texts */ +/* -------------------------------------------------- */ + +.pub-intro { + max-width: 100%; + margin: 0 auto 2rem auto; + font-size: 0.9rem; + color: #495057; + line-height: 1.6; +} + +.citation-container { + float: right; + margin: 0 0 1rem 2rem; + max-width: 250px; + /* Reduced for compactness */ +} + +.citation-container img { + display: block; + width: 100%; + height: auto; + border-radius: 8px; + /* Consistent radius */ + box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); +} + +.citation-container figcaption { + text-align: center; + margin-top: 0.5em; + font-size: 0.75rem; + color: #868e96; +} + +.pub-section-description { + max-width: 800px; + margin: 1rem auto 0 auto; + font-size: 0.9rem; + color: #666; + font-style: italic; + line-height: 1.5; +} + +/* -------------------------------------------------- */ +/* Muted Publication Buttons */ +/* -------------------------------------------------- */ + +.pub-buttons .btn { + font-weight: 500; + border-width: 1px; +} + +/* Primary (DOI, Link) - Muted Blue */ +.pub-buttons .btn-outline-primary { + color: #5c7c93; + border-color: #5c7c93; +} + +.pub-buttons .btn-outline-primary:hover { + background-color: #5c7c93; + border-color: #5c7c93; + color: #fff; +} + +/* Success (Download Paper) - Muted Green */ +.pub-buttons .btn-outline-success { + color: #6c9a76; + border-color: #6c9a76; +} + +.pub-buttons .btn-outline-success:hover { + background-color: #6c9a76; + border-color: #6c9a76; + color: #fff; +} + +/* Danger (Download PDF) - Muted Red */ +.pub-buttons .btn-outline-danger { + color: #c17d7d; + border-color: #c17d7d; +} + +.pub-buttons .btn-outline-danger:hover { + background-color: #c17d7d; + border-color: #c17d7d; + color: #fff; +} + +/* Info (Project) - Muted Teal */ +.pub-buttons .btn-outline-info { + color: #769da3; + border-color: #769da3; +} + +.pub-buttons .btn-outline-info:hover { + background-color: #769da3; + border-color: #769da3; + color: #fff; } \ No newline at end of file diff --git a/content/publications/publications.md b/content/publications/publications.md index af076b5bfb7..0ee0985d214 100644 --- a/content/publications/publications.md +++ b/content/publications/publications.md @@ -7,8 +7,8 @@ headless = true # This file represents a page section. active = true # Activate this widget? true/false weight = 5 # Order that this section will appear. -title = "Publications, Preprints, Policy Briefs, Op-Eds, Shiny Apps, Data & R-packages" -subtitle = "" +title = "FORRT's Research, Scholarship & Resources" +subtitle = "Peer-reviewed research, tools, data, teaching materials, and policy resources advancing open and reproducible science." [design] # Choose how many columns the section has. Valid values: 1 or 2. @@ -50,32 +50,11 @@ subtitle = "" css_class = "" +++ - - - - - --- -# **Academic peer-reviewed publications** + ---- +
Citation Chart @@ -84,52 +63,42 @@ subtitle = "" This page showcases the diverse scholarly and public-facing outputs produced by FORRT and its community—including peer-reviewed publications, preprints, policy briefs, opinion pieces, interactive apps, datasets, and open-source tools. It reflects our ongoing efforts to contribute to scientific discourse, inform policy, and promote open, inclusive, and transparent research practices. Whether you're a researcher, educator, or policymaker, this hub provides access to FORRT’s evolving body of work. Dive in to discover, cite, or collaborate. -
- -{{< publication_list type="journal" >}} - -
- -
-

Preprints

-
-{{< publication_list type="preprint" >}} +{{< publication_filters >}} + +{{< publication_list type="journal" title="Academic peer-reviewed publications" >}}
-# Op-Eds and Other Media +{{< publication_list type="preprint" title="Preprints" >}} -{{< publication_list type="media" >}}
-# Policy Briefs -*** - -{{< publication_list type="policy" >}} +{{< publication_list type="media" title="Op-Eds and Other Media" >}}
-
-

FORRT affiliated projects

-
-
- -{{< publication_list type="affiliated" >}} +{{< publication_list type="policy" title="Policy Briefs" >}}
-
-

Work in Progress

-
-
+{{< publication_list type="affiliated" title="FORRT affiliated projects" >}} -{{< publication_list type="wip" >}} +
+{{< publication_list type="wip" title="Work in Progress" >}} -# **Ongoing Projects** +
-We are currently preparing additional manuscripts on a range of topics. To find out more about what we're working on and how you can contribute, visit our [Get Involved page](/about/get-involved). +
+
+

Find More About Ongoing Projects

+
+
+ We are currently preparing additional manuscripts on a range of topics. To find out more about what we're working on and how you can contribute, visit our Get Involved page. +
+
+
diff --git a/data/publications.yaml b/data/publications.yaml index 099b0ac8afd..71d1f687317 100644 --- a/data/publications.yaml +++ b/data/publications.yaml @@ -12,6 +12,7 @@ doi: "https://doi.org/10.1016/j.socec.2025.102502" pdf: "https://doi.org/10.1016/j.socec.2025.102502" altmetric_doi: "10.1016/j.socec.2025.102502" + focus_area: "Meta-Research & Scientific Reform" # 2 - title: "Mapping Open Science Communities in Psychology: A Systematic Narrative Review" @@ -25,6 +26,7 @@ links: doi: "https://doi.org/10.1098/rsos.241726" altmetric_doi: "10.1098/rsos.241726" + focus_area: "Community, Governance & Sustainability" # 3 - title: "A Community Model for Rigorous and Inclusive Scholarship" @@ -39,6 +41,7 @@ doi: "https://doi.org/10.17879/replicationresearch-2025-9022" pdf: "./pdf/Inaugural_Editorial_of_Replication_Research_R2.pdf" altmetric_doi: "10.17879/replicationresearch-2025-9022" + focus_area: "Meta-Research & Scientific Reform" # 4 - title: "Bridging Neurodiversity and Open Scholarship: How Shared Values Can Guide Best Practices for Research Integrity, Social Justice, and Principled Education" @@ -52,6 +55,7 @@ links: doi: "https://doi.org/10.1111/josi.70035" altmetric_doi: "10.1111/josi.70035" + focus_area: "Equity, Diversity & Social Justice" # 5 - title: "An annotated introductory reading list for neurodiversity" @@ -66,6 +70,7 @@ doi: "https://doi.org/10.7554/eLife.102467" postprint: "https://doi.org/10.7554/eLife.102467" altmetric_doi: "10.7554/eLife.102467" + focus_area: "Equity, Diversity & Social Justice" # 6 - title: "The Replication Database: Documenting the Replicability of Psychological Science" @@ -84,13 +89,13 @@ altmetric_doi_2: "10.5334/jopd.101" # 7 -- title: "The Impact of Open Scholarship on Students' Learning Outcomes (Scoping Review)" +- title: "Teaching open and reproducible scholarship: a critical review of the evidence base for current pedagogical methods and their outcomes" type: "journal" year: "2023" status: "Published" journal_name: "Royal Society Open Science" authors: "Pownall, M., Azevedo, F., König, L. M., Slack, H. R., Evans, T. R., Flack, Z., ... & FORRT." - abstract: "We have written a manuscript entitled *Teaching open and reproducible scholarship: a critical review of the evidence base for current pedagogical methods and their outcomes*. This manuscript describes the available (empirical) evidence of the impact (and importance) of integrating open scholarship into higher education." + abstract: "In recent years, the scientific community has called for improvements in the credibility, robustness and reproducibility of research, characterized by increased interest and promotion of open and transparent research practices. While progress has been positive, there is a lack of consideration about how this approach can be embedded into undergraduate and postgraduate research training. Specifically, a critical overview of the literature which investigates how integrating open and reproducible science may influence student outcomes is needed. In this paper, we provide the first critical review of literature surrounding the integration of open and reproducible scholarship into teaching and learning and its associated outcomes in students. Our review highlighted how embedding open and reproducible scholarship appears to be associated with (i) students' scientific literacies (i.e. students’ understanding of open research, consumption of science and the development of transferable skills); (ii) student engagement (i.e. motivation and engagement with learning, collaboration and engagement in open research) and (iii) students' attitudes towards science (i.e. trust in science and confidence in research findings). However, our review also identified a need for more robust and rigorous methods within pedagogical research, including more interventional and experimental evaluations of teaching practice. We discuss implications for teaching and learning scholarship." citation: "Pownall, M., et al. (2023). Teaching open and reproducible scholarship: A critical review of the evidence base for current pedagogical methods and their outcomes. Royal Society Open Science, 10(5), 221255. https://doi.org/10.1098/rsos.221255" links: doi: "https://doi.org/10.1098/rsos.221255" @@ -189,6 +194,32 @@ altmetric_doi: "10.31222/osf.io/qjecy_v2" # 2 +- title: "Tracking and mainstreaming replications in the social, cognitive, and behavioral sciences" + type: "preprint" + year: "2025" + status: "Published" + journal_name: "MetaArXiv" + authors: "Hartmann H, Azevedo F, Röseler L, Wallrich L, Aldoh A, Elsherif MM, et al." + abstract: "Replicability is a cornerstone of scientific progress. Yet, replications are often undervalued, and are sometimes seen as redundant, unimportant, or lacking novelty. This impedes their broader adoption in research and beyond. In response, the credibility revolution calls for slower, more deliberate science and greater responsiveness to fallibility. In this perspective piece, we argue that (a) replications are essential for validating scientific claims, (b) replications need to be made more visible, recognized, and integrated into research and educational practices, and (c) we can change the way we view and judge replication results. We propose a framework where replication studies can be systematically tracked and normalized through the Replication Hub as part of the Framework for Open and Reproducible Research Training (FORRT) initiative, with the goal of enhancing the visibility, integration, and cumulative impact of replication research across disciplines." + citation: "Hartmann H, Azevedo F, Röseler L, Wallrich L, Aldoh A, Elsherif MM, et al. Tracking and mainstreaming replications in the social, cognitive, and behavioral sciences. MetaArXiv. https://doi.org/10.31222/osf.io/ad2w6_v1" + links: + doi: "https://doi.org/10.31222/osf.io/ad2w6_v1" + altmetric_doi: "10.31222/osf.io/ad2w6_v1" + +# 3 +- title: "How to Develop and Use Open Educational Resources" + type: "preprint" + year: "2025" + status: "Preprint" + journal_name: "MetaArxiv" + authors: "Azevedo, F., Friedel, E., Ashcroft-Jones, S., Korbmacher, M., Lloyd, K., Mudahera, D. R., Kravesta, A., Resulbegoviq, H., Andreolli, G., Micheli, L., & Silverstein, P." + abstract: "This chapter explores the critical role of Open Educational Resources (OERs) in advancing open science and promoting educational equity. OERs are freely-available teaching and learning materials that can be reused and adapted, making them powerful tools for democratising access to knowledge. Drawing on principles from critical pedagogy, feminist, and decolonial scholarship, we position OERs not only as cost-saving tools but as instruments of epistemic justice and inclusion. This chapter outlines five foundational principles for OER development—accessibility, inclusivity, collaboration, sustainability, and social justice—and offers a step-by-step framework for creating, implementing, and sustaining high-quality OERs. Case studies are presented to demonstrate participatory and community-driven approaches to OER creation. We also examine common challenges such as structural inequality and linguistic barriers, providing actionable strategies for addressing each. By embedding values of openness, fairness, and co-creation, we show how OERs can help reshape curricula and cultivate more inclusive academic ecosystems." + citation: "Azevedo, F., Friedel, E., Ashcroft-Jones, S., Korbmacher, M., Lloyd, K., Mudahera, D. R., Kravesta, A., Resulbegoviq, H., Andreolli, G., Micheli, L., & Silverstein, P. (2025, Sept 30). How to Develop and Use Open Educational Resources. In Pennington, C. & Pownall, M. (Eds.), Teaching Open Science. Edward Elgar Publishing." + links: + doi: "https://doi.org/10.35542/osf.io/sn693_v1" + altmetric_doi: "10.35542/osf.io/sn693_v1" + +# 4 - title: "Neurodiversity & Open Scholarship in Academia" type: "preprint" year: "2022" @@ -202,7 +233,7 @@ postprint: "https://doi.org/10.31222/osf.io/k7a9p" altmetric_doi: "10.31222/osf.io/k7a9p" -# 3 +# 5 - title: "FORRT's Manifesto" type: "preprint" year: "2019" @@ -361,6 +392,19 @@ postprint: "https://doi.org/10.1037/met0000687" altmetric_doi: "10.1037/met0000687" +# 3 +- title: "Towards FAIRification of learning resources and catalogues—lessons learnt from research communities" + type: "affiliated" + year: "2024" + status: "Published" + journal_name: "Frontiers in Education" + authors: "Provost, L., Bezuidenhout, L., Venkataraman, S., van der Lek, I., van Gelder, C., Kuchma, I., Leenarts, E., Azevedo, F., Brvar, I. V., Paladin, L., Clare, H., and Braukmann, R." + abstract: "Since the introduction of the FAIR (Findable, Accessible, Interoperable and Reusable) data principles in 2016, discussions have evolved beyond the original focus on research data to include learning resources. In 2020, a set of simple rules to FAIRify learning resources was proposed, building on existing expertise within the training community. Disciplinary communities have played an important role in advancing FAIR principles for learning resources, although they have approached FAIRification activities in different ways. These communities range from volunteer-led to funded and independent organisations, however commonly include activities such as organising training and capacity building, and coordinated discussions on disciplinary-focused FAIR best practices and standards." + citation: "Provost, L., Bezuidenhout, L., Venkataraman, S., van der Lek, I., van Gelder, C., Kuchma, I., Leenarts, E., Azevedo, F., Brvar, I. V., Paladin, L., Clare, H., and Braukmann, R. (2024). Towards FAIRification of learning resources and catalogues—lessons learnt from research communities. Frontiers in Education, 9, 1390444. https://doi.org/10.3389/feduc.2024.1390444" + links: + doi: "https://doi.org/10.3389/feduc.2024.1390444" + altmetric_doi: "10.3389/feduc.2024.1390444" + # --- Work in Progress --- diff --git a/layouts/shortcodes/publication_filters.html b/layouts/shortcodes/publication_filters.html new file mode 100644 index 00000000000..3b8b012a610 --- /dev/null +++ b/layouts/shortcodes/publication_filters.html @@ -0,0 +1,124 @@ +
+ + {{/* Content Type Filter */}} +
Filter by Content Type
+
+ All + Publications + Preprints + Policy Briefs + Op-Eds + Teaching Materials + Interactive Tools / + Apps + Data, Code & Packages + Working Papers & + Ongoing Projects + Affiliated Projects +
+ +
+ + {{/* Focus Area Filter */}} +
Filter by Research Area
+
+ All Areas + Meta-Research & + Scientific Reform + Equity, Diversity & + Social Justice + Community, + Governance & Sustainability + Education & Pedagogy +
+ + {{/* Empty State Warning */}} + + +
+ + \ No newline at end of file diff --git a/layouts/shortcodes/publication_list.html b/layouts/shortcodes/publication_list.html index 8c00cf71241..9dae9e30805 100644 --- a/layouts/shortcodes/publication_list.html +++ b/layouts/shortcodes/publication_list.html @@ -1,90 +1,149 @@ {{ $type := .Get "type" }} +{{ $title := .Get "title" }} {{ $items := where site.Data.publications "type" $type }} -
- {{ range $items }} -
-
+{{/* Centralized Type Map */}} +{{ $typeMap := dict +"journal" "Publications" +"preprint" "Preprints" +"policy" "Policy Briefs" +"media" "Op-Eds" +"affiliated" "Affiliated Projects" +"wip" "Working Papers & Ongoing Projects" +"tool" "Interactive Tools / Apps" +"resource" "Teaching Materials" +"data" "Data, Code & Packages" +}} -
- {{ .status }} - {{ .year }} -
+
+ {{ $description := .Get "description" }} + {{ if $title }} +
+

{{ $title | markdownify }}

+
+ {{ if $description }} +
+ {{ $description | markdownify }} +
+ {{ end }} +
+ {{ end }} +
+ {{ range $items }} + {{ $dataType := index $typeMap .type | default .type }} +
+
-

{{ .title | markdownify }}

+
+
+ {{/* Content Type Pill */}} + {{ $typeLabel := index $typeMap .type }} + {{ if not $typeLabel }} + {{ $typeLabel = .type | humanize | title }} + {{ end }} -
- {{ .authors | markdownify }} -
+ {{ $typeClass := "" }} + {{ if $typeLabel }} + {{ $typeClass = printf "pill-%s" ($typeLabel | urlize) }} + {{ else }} + {{ $typeClass = printf "pill-%s" (.type | urlize) }} + {{ end }} -
- {{ if .journal_name }} - - {{ .journal_name }} - {{ end }} -
+ {{ if eq .type "wip" }}{{ $typeClass = "pill-working-papers" }}{{ end }} -
- -
-
-

{{ .abstract | markdownify }}

-
+ {{ $typeLabel }} -
- Cite: -
- {{ .citation | markdownify }} + {{/* Focus Area Pill */}} + {{ if .focus_area }} + {{ $focusClass := printf "pill-%s" (.focus_area | urlize) }} + {{ .focus_area }} + {{ end }} +
+ {{ .year }}
-
- + {{ end }}
- {{ end }}
\ No newline at end of file