Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP do not merge #44

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions content/blog/2022-09-10-four-grants.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
title: "Announcing 4 new grants for URSSI"
date: 2022-09-04
author: "Karthik Ram, Nic Weber, Kyle Niemeyer, and Daniel S. Katz"
authors:
- karthik
- nic
- kyle
- dan
---

For many of us who develop, maintain, and use research software, the issue of software sustainability or lack thereof
Expand Down
3 changes: 2 additions & 1 deletion content/blog/2023-06-22-charting-intro.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
---
title: "Introducing 'Charting the Course: Policy and Planning for Sustainable Research Software'"
date: 2023-06-22
author: "Eric A. Jensen"
authors:
- eric
---

Hello research software community!
Expand Down
4 changes: 3 additions & 1 deletion content/blog/2023-10-04-new-policy-activities.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
---
title: "Elevate Research Software: Co-creating a Digital Roadmap"
date: 2023-10-04
author: "Eric A. Jensen and Daniel S. Katz"
authors:
- eric
- dan
---
As algorithms become the new lab assistants in contemporary research, software is no longer a sidebar—it's the headline. The need to recognize and support software contributions has become imperative. How do we measure and extend the impact of research software? How do we integrate it into academic evaluations? One lens in which to view these types of questions is policy, which can be thought of as involving, research, organizing, and advocacy.

Expand Down
35 changes: 35 additions & 0 deletions data/authors.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
karthik:
name: "Karthik Ram"
bio: "Karthik is a senior scientist at UC Berkeley and the project lead for URSSI"
profile_image: "/i/karthik300x300.png"
mastodon: "https://hachyderm.io/@inundata"
website: "https://ram.berkeley.edu/"

dan:
name: "Daniel S. Katz"
bio: "Dan is ..."
profile_image: "/images/dan_katz.jpg"
mastodon: ""
website: "https://danielskatz.org/"

eric:
name: "Eric A. Jensen"
bio: "Eric is ..."
profile_image: "/images/eric_jensen.jpg"
mastodon: "eric_jensen"
website: ""

nic:
name: "Nic Weber"
bio: "Nic is ..."
profile_image: "/images/nic_weber.jpg"
mastodon: "nic_weber"
website: "https://nicweber.info/"

kyle:
name: "Kyle Niemeyer"
bio: "Kyle is ..."
profile_image: "/images/kyle_niemeyer.jpg"
mastodon: "kyle_niemeyer"
website: "https://niemeyer-research-group.github.io/"

10 changes: 7 additions & 3 deletions themes/urssi/layouts/blog/list.html
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,13 @@ <h1 class="mb-6 mb-md-15 display-4">
<p class="mb-8 fs-1 text-dark-1 fw-bold text-capitalize">
<a href="{{ .Permalink }}">{{ .Title }}</a>
</p>
<p class="text-dark-1 text-capitalize fs-3 mb-4">
{{ .Params.author | default .Site.Params.author }} • {{ .Date.Format "January 2, 2006"}}
</p>
{{ $authors := .Params.authors }} <!-- Store authors in a variable outside the loop -->
{{ range $index, $author := $authors }}
{{ with index $.Site.Data.authors $author }}
{{ .name }}
{{ if ne $index (sub (len $authors) 1) }}, {{ end }} <!-- This adds a comma between names except for the last name -->
{{ end }}
{{ end }}
<p class="mb-0 text-dark-1 fs-3">
{{ .Summary }}
</p>
Expand Down
14 changes: 11 additions & 3 deletions themes/urssi/layouts/blog/single.html
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,17 @@
<h1 class="display-3 mb-6 mb-md-15">
{{ .Title }}
</h1>
<p class="fs-3 fw-bold text-dark-1 mt-xl-8">
{{ .Params.author | default .Site.Params.author }}
</p>

<p class="fs-3 fw-bold text-dark-1 mt-xl-8">
{{ $authors := .Params.authors }} <!-- Store authors in a variable outside the loop -->
{{ range $index, $author := $authors }}
{{ with index $.Site.Data.authors $author }}
{{ .name }}
{{ if ne $index (sub (len $authors) 1) }}, {{ end }} <!-- This adds a comma between names except for the last name -->
{{ end }}
{{ end }}
</p>

<p class="mt-xl-1 fw-light border-bottom border-dark-3 fs-5 text-dark-2 mb-xl-8 pb-xl-4">
{{ .Date.Format "January 2, 2006"}}
</p>
Expand Down