Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
874cc50
update core members
Intron7 Oct 30, 2024
116f0a0
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Oct 30, 2024
ee65e51
remove colors
Intron7 Oct 30, 2024
7701558
Merge branch 'main' into make-core-nice
Intron7 Jan 8, 2025
cd04537
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Jan 8, 2025
2efde2d
Merge branch 'main' of https://github.com/scverse/scverse.github.io i…
Zethson Mar 17, 2025
39066e0
testing
Zethson Mar 17, 2025
26ce1d4
iterate
Zethson Mar 17, 2025
0b24613
iterate
Zethson Mar 17, 2025
1fec212
iterate
Zethson Mar 17, 2025
f19c6e4
iterate
Zethson Mar 17, 2025
a4b52d9
iterate
Zethson Mar 17, 2025
2df446b
Add content
Zethson Mar 17, 2025
4410070
Also make it work for sc
Zethson Mar 17, 2025
965aaec
Iterate
Zethson Mar 17, 2025
df9dd89
emails
Zethson Mar 17, 2025
75af51b
iterate
Zethson Mar 17, 2025
f7a806f
remove unused styling
Zethson Mar 17, 2025
f2cc22b
polish
Zethson Mar 17, 2025
0c7610e
Core member layout as grid and remove javascript hover in favor of CS…
maltekuehl Mar 17, 2025
2256a1f
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Mar 17, 2025
74b3a14
Core member layout as grid and remove javascript hover in favor of CS…
maltekuehl Mar 17, 2025
ff4ee36
Only change border radius on members with additional info
maltekuehl Mar 17, 2025
5b8a1e2
Make links relative to root and drop base url
maltekuehl Mar 17, 2025
cec0045
Use base url but relative permalink for styles
maltekuehl Mar 17, 2025
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
4 changes: 2 additions & 2 deletions .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ on:

jobs:
deploy:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
submodules: true # Fetch Hugo themes (true OR recursive)
fetch-depth: 1 # Fetch all history for .GitInfo and .Lastmod
Expand Down
120 changes: 94 additions & 26 deletions assets/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@ $maxwidthwide: 1400px;
$contentwidth: 80%;
$contentwidthwide: 92%;

$additionalInfoColor: #666666;

@font-face {
font-family: "Inter";
src: url("fonts/Inter/Inter-VariableFont_slnt,wght.ttf");
Expand Down Expand Up @@ -225,6 +227,20 @@ a .more {
}
}

@mixin core-chip {
background-color: $tilebg;
text-decoration: none;
color: $tiletext;
padding: 0.4rem;
text-align: center;
border-radius: 0.5rem;
transition: all 200ms ease-in-out;
&:hover {
color: $tiletext3;
background-color: $tilebg2;
}
}

html,
body {
width: 100%;
Expand Down Expand Up @@ -1150,30 +1166,82 @@ body {

// Specific to /people

#people-content {
.team {
.team-text {
margin: 1rem 0;
}
.team-list {
font-size: 1.1rem;
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 0.5rem;
justify-content: flex-start;
.person-chip {
@include person-chip;
font-size: 1rem;
font-family: "Inter", sans-serif;
}
a {
text-decoration: none;
}
}
}
// margin-top: 1rem !important;
// h2:first-of-type {
// margin-top: 0 !important;
// }
#people-content .team .team-list {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
gap: 0.5rem;
justify-content: flex-start;
font-size: 1.1rem;
}

#people-content .team .team-list a {
text-decoration: none;
}

.team-member {
background-color: var(--tilebg, #f5f5f5);
color: var(--tiletext, #333);
text-align: center;
border-radius: 0.5rem;
transition: all 200ms ease-in-out;
font-size: 1rem;
font-family: "Inter", sans-serif;
position: relative;
}

.person-chip {
background-color: var(--tilebg, #f5f5f5);
color: var(--tiletext, #333);
padding: 0.4rem;
text-align: center;
display: block;
border-radius: 0.5rem;
width: 100%;
}

.team-member:hover .person-chip {
background-color: var(--tilebg2, #e5e5e5);
color: var(--tiletext3, #000);
}

.team-member:has(.additional-info):hover .person-chip {
border-radius: 0.5rem 0.5rem 0 0;
}

.core-member {
cursor: pointer;
}

.additional-info {
background-color: var(--tilebg2, #e5e5e5);
color: var(--tiletext3, #000);
position: absolute;
visibility: hidden;
z-index: 50;
border-radius: 0 0rem 0.5rem 0.5rem;
width: 100%;
}

.team-member:hover .additional-info {
visibility: visible;
}

.additional-info .email-link {
color: inherit;
text-decoration: underline;
cursor: pointer;
}

.additional-info .email-link:hover {
color: #0056b3;
}

.core-member:hover .additional-info {
display: block;
}

.additional-info p {
margin: 0.5rem 0;
line-height: 1.5;
margin-top: 0.5rem;
}
2 changes: 1 addition & 1 deletion config.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
baseURL = "https://scverse.org"
baseURL = "https://scverse.org/"
languageCode = "en-us"
title = "scverse"
description = "Foundational tools for omics data in the life sciences"
Expand Down
88 changes: 88 additions & 0 deletions content/people/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,74 +11,146 @@ preface = "For people participating in and interacting with the consortium, ther
[[teams.members]]
name = "Philipp Angerer"
url = "https://github.com/flying-sheep"
isCoreMember = true
role = "anndata & scanpy"
email = "philipp.angerer@scverse.org"
affiliation = "Helmholtz-Munich"

[[teams.members]]
name = "Danila Bredikhin"
url = "https://github.com/gtca"
isCoreMember = true
role = "mudata & muon"
email = "danila.bredikhin@scverse.org"
affiliation = "Stanford University"

[[teams.members]]
name = "Can Ergen-Behr"
url = "https://github.com/canergen"
isCoreMember = true
role = "scvi-tools"
email = "can.ergen@scverse.org"
affiliation = "University of California, Berkely"

[[teams.members]]
name = "Emma Dann"
url = "https://github.com/emdann"
isCoreMember = true
role = "community & events"
email = "emma.dann@scverse.org"
affiliation = "Stanford University"

[[teams.members]]
name = "Severin Dicks"
url = "https://github.com/Intron7"
isCoreMember = true
role = "rapids-singlecell"
email = "severin.dicks@scverse.org"
affiliation = "NVIDIA"

[[teams.members]]
name = "Jennifer Foltz"
url = "https://jfoltzlab.org/"
isCoreMember = true
role = "community"
email = "jennifer.foltz@scverse.org"
affiliation = "Washington University"

[[teams.members]]
name = "Ilan Gold"
url = "https://github.com/ilan-gold"
isCoreMember = true
role = "anndata & scanpy"
email = "ilan.gold@scverse.org"
affiliation = "Helmholtz Munich"

[[teams.members]]
name = "Lukas Heumos"
url = "https://github.com/Zethson"
isCoreMember = true
role = "pertpy & operations"
email = "lukas.heumos@scverse.org"
affiliation = "Lamin Labs & Helmholtz Munich"

[[teams.members]]
name = "Mikaela Koutrouli"
url = "https://github.com/mikelkou"
isCoreMember = true
role = "operations"
email = "mikaela.koutrouli@scverse.org"
affiliation = "Genentech"

[[teams.members]]
name = "Ori Kronfeld"
url = "https://github.com/ori-kron-wis"
isCoreMember = true
role = "scvi-tools"
email = "ori.kronfeld@scverse.org"
affiliation = "Weizmann Institute of Science"

[[teams.members]]
name = "Luca Marconato"
url = "https://github.com/LucaMarconato"
isCoreMember = true
role = "spatialdata"
email = "luca.marconato@scverse.org"
affiliation = "EMBL Heidelberg"

[[teams.members]]
name = "Giovanni Palla"
url = "https://github.com/giovp"
isCoreMember = true
role = "spatialdata & squipy"
email = "giovanni.palla@scverse.org"
affiliation = "CZI"

[[teams.members]]
name = "Anna Schaar"
url = "https://github.com/AnnaChristina"
isCoreMember = true
role = "events"
email = "anna.schaar@scverse.org"
affiliation = "Bioptimus"

[[teams.members]]
name = "Roshan Sharma"
url = "https://github.com/roshan9128"
isCoreMember = true
role = "grants & workshops"
email = "roshan.sharma@scverse.org"
affiliation = "Memorial Sloan Kettering Cancer Center"

[[teams.members]]
name = "Gregor Sturm"
url = "https://github.com/grst"
isCoreMember = true
role = "scirpy"
email = "gregor.sturm@scverse.org"
affiliation = "Böhringer Ingelheim"

[[teams.members]]
name = "Tim Treis"
url = "https://github.com/timtreis"
isCoreMember = true
role = "spatialdata-plot & squidpy"
email = "tim.treis@scverse.org"
affiliation = "Helmholtz Munich"

[[teams.members]]
name = "Wouter-Michiel Vierdag"
url = "https://github.com/melonora"
isCoreMember = true
role = "spatialdata"
email = "michiel.vierdag@scverse.org"
affiliation = "EMBL Heidelberg"

[[teams.members]]
name = "Isaac Virshup"
url = "https://github.com/ivirshup"
isCoreMember = true
role = "anndata & scanpy"
email = "isaac.virshup@scverse.org"
affiliation = "CZI"

# ---------- steering committee, in alphabetical order

Expand All @@ -89,18 +161,34 @@ preface = "For people participating in and interacting with the consortium, ther
[[teams.members]]
name = "Danila Bredikhin"
url = "https://github.com/gtca"
isCoreMember = true
role = "mudata & muon"
email = "danila.bredikhin@scverse.org"
affiliation = "Stanford University"

[[teams.members]]
name = "Lukas Heumos"
url = "https://github.com/Zethson"
isCoreMember = true
role = "pertpy & operations"
email = "lukas.heumos@scverse.org"
affiliation = "Lamin Labs & Helmholtz Munich"

[[teams.members]]
name = "Mikaela Koutrouli"
url = "https://github.com/mikelkou"
isCoreMember = true
role = "operations"
email = "mikaela.koutrouli@scverse.org"
affiliation = "Genentech"

[[teams.members]]
name = "Isaac Virshup"
url = "https://twitter.com/ivirshup"
isCoreMember = true
role = "anndata & scanpy"
email = "isaac.virshup@scverse.org"
affiliation = "CZI"

# ---------- management committee, in alphabetical order

Expand Down
16 changes: 8 additions & 8 deletions layouts/partials/head.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@
{{ $styles := resources.Get "main.scss" | toCSS | minify }}
<link rel="stylesheet" type="text/css" href="/bootstrap/css/bootstrap.min.css" />
<link rel="stylesheet" type="text/css" href="/bootstrap/icons/bootstrap-icons.css" />
<link rel="stylesheet" type="text/css" href="{{ $styles.Permalink }}" />
<link rel="stylesheet" type="text/css" href="{{ $styles.RelPermalink }}" />

<link rel="apple-touch-icon" sizes="180x180" href="../img/favicon/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="../img/favicon/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="../img/favicon/favicon-16x16.png" />
<link rel="manifest" href="../img/favicon/site.webmanifest" />
<link rel="mask-icon" href="../img/favicon/safari-pinned-tab.svg" color="#000000" />
<link rel="shortcut icon" href="../img/favicon/favicon.ico" />
<link rel="apple-touch-icon" sizes="180x180" href="/img/favicon/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/img/favicon/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/img/favicon/favicon-16x16.png" />
<link rel="manifest" href="/img/favicon/site.webmanifest" />
<link rel="mask-icon" href="/img/favicon/safari-pinned-tab.svg" color="#000000" />
<link rel="shortcut icon" href="/img/favicon/favicon.ico" />
<meta name="msapplication-TileColor" content="#00aba9" />
<meta name="msapplication-config" content="../img/favicon/browserconfig.xml" />
<meta name="msapplication-config" content="/img/favicon/browserconfig.xml" />
<meta name="theme-color" content="#ffffff" />

<meta content="text/html;charset=utf-8" http-equiv="Content-Type" />
Expand Down
Loading