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

teams incorporated #9

Merged
merged 3 commits into from
Sep 22, 2023
Merged
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
2 changes: 1 addition & 1 deletion _static/css/home/carousel.css
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
top: 40px;
left: 0;
background-color: var(--gst-color-primary);
box-shadow: var(--pst-shadow);
box-shadow: var(--gst-shadow);
}

.carousel-caption::after {
Expand Down
2 changes: 1 addition & 1 deletion _static/css/home/cite.css
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
justify-content: center;
align-items: center;

box-shadow: var(--pst-shadow);
box-shadow: var(--gst-shadow);
}


Expand Down
2 changes: 1 addition & 1 deletion _static/css/home/explore.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

.explore-tile:hover,
.explore-tile:hover .explore-tile-icon {
box-shadow: var(--pst-shadow);
box-shadow: var(--gst-shadow);
}

.explore-tile-icon {
Expand Down
70 changes: 41 additions & 29 deletions conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@

import os
import sys
import json
try:
import tomllib
except ImportError:
Expand Down Expand Up @@ -124,6 +125,9 @@
# given in html_static_path.
html_style = 'css/dipy.css'

with open('contributors.json', 'r') as f:
contributors = json.load(f)

# Theme options are theme-specific and customize the look and feel of a theme
# further. For a list of options available for each theme, see the
# documentation.
Expand All @@ -139,32 +143,32 @@
{
"name": "Quick Start",
"url": "https://docs.dipy.org",
"external": True
"link_type": "inter"
},
{
"name": "Tutorials",
"url": "https://docs.dipy.org/tutorials",
"external": True
"link_type": "inter"
},
{
"name": "Recipes",
"url": "https://docs.dipy.org/recipes",
"external": True
"link_type": "inter"
},
{
"name": "CLI / Workflows",
"url": "https://docs.dipy.org/cli",
"external": True
"link_type": "inter"
},
{
"name": "API",
"url": "https://docs.dipy.org/reference",
"external": True
"link_type": "inter"
},
{
"name": "CLI API",
"url": "https://docs.dipy.org/cli/reference",
"external": True
"link_type": "inter"
}
]
},
Expand All @@ -177,7 +181,7 @@
{
"name": "DIPY Workshop 2024",
"url": "https://dipy.org/workshops/dipy-workshop-2024",
"external": True
"link_type": "external"
}
]
},
Expand All @@ -187,27 +191,27 @@
{
"name": "DIPY Workshop 2023",
"url": "https://dipy.org/workshops/dipy-workshop-2023",
"external": True
"link_type": "external"
},
{
"name": "DIPY Workshop 2022",
"url": "https://dipy.org/workshops/dipy-workshop-2022",
"external": True
"link_type": "external"
},
{
"name": "DIPY Workshop 2021",
"url": "https://dipy.org/workshops/dipy-workshop-2021",
"external": True
"link_type": "external"
},
{
"name": "DIPY Workshop 2020",
"url": "https://dipy.org/workshops/dipy-workshop-2020",
"external": True
"link_type": "external"
},
{
"name": "DIPY Workshop 2019",
"url": "https://dipy.org/workshops/dipy-workshop-2019",
"external": True
"link_type": "external"
},
]
}
Expand All @@ -222,7 +226,7 @@
{
"name": "Newsletters",
"url": "https://mail.python.org/mailman3/lists/dipy.python.org/",
"external": True
"link_type": "external"
},
{
"name": "Blog",
Expand All @@ -231,7 +235,7 @@
{
"name": "Youtube",
"url": "https://www.youtube.com/c/diffusionimaginginpython",
"external": True
"link_type": "external"
}
]
},
Expand All @@ -246,7 +250,7 @@
{
"name": "Github Discussions",
"url": "https://github.com/dipy/dipy/discussions",
"external": True
"link_type": "external"
}
]
}
Expand Down Expand Up @@ -312,7 +316,7 @@
},
"footer_start": ["components/footer-sign-up.html"],
"footer_signup_data": {
"heading": "Never miss an update from us",
"heading": "Never miss an update from us!",
"sub_heading": "Don't worry! we are not going to spam you."
},
"footer_end": ["components/footer-sections.html"],
Expand All @@ -327,7 +331,7 @@
{
"name": "Support",
"link": "https://github.com/dipy/dipy/discussions",
"external": True
"link_type": "external"
},
{
"name": "Download",
Expand All @@ -340,12 +344,12 @@
{
"name": "Tutorials",
"link": "https://docs.dipy.org/tutorials/",
"external": True
"link_type": "external"
},
{
"name": "Videos",
"link": "https://www.youtube.com/c/diffusionimaginginpython",
"external": True
"link_type": "external"
},
]
}, {
Expand All @@ -354,22 +358,22 @@
{
"name": "Nipy Projects",
"link": "http://nipy.org/",
"external": True
"link_type": "external"
},
{
"name": "FURY",
"link": "http://fury.gl/",
"external": True
"link_type": "external"
},
{
"name": "Nibabel",
"link": "http://nipy.org/nibabel",
"external": True
"link_type": "external"
},
{
"name": "Tortoise",
"link": "https://tortoise.nibib.nih.gov/",
"external": True
"link_type": "external"
},
]
}, {
Expand All @@ -378,27 +382,34 @@
{
"name": "The department of Intelligent Systems Engineering of Indiana University",
"link": "https://engineering.indiana.edu/",
"external": True
"link_type": "external"
},
{
"name": "The National Institute of Biomedical Imaging and Bioengineering, NIH",
"link": "https://www.nibib.nih.gov/",
"external": True
"link_type": "external"
},
{
"name": "The Gordon and Betty Moore Foundation and the Alfred P. Sloan Foundation, through the University of Washington eScience Institute Data Science Environment",
"link": "https://escience.washington.edu/tag/alfred-p-sloan-foundation/",
"external": True
"link_type": "external"
},
{
"name": "Google supported DIPY through the Google Summer of Code Program during Summer 2015, 2016, 2018",
"link": "https://summerofcode.withgoogle.com/",
"external": True
"link_type": "external"
},
]
}
],
"footer_copyright": "Copyright 2008-2023, DIPY developers. Created using Grg Sphinx Theme and PyData Sphinx Theme."
"footer_copyright": "Copyright 2008-2023, DIPY developers. Created using Grg Sphinx Theme and PyData Sphinx Theme.",
"github_project": "dipy",
"github_repo": "dipy",
"github_teams": [{
"value": "core-dev",
"label": "Core Developers"
}],
"contributors_details": contributors
}

with open('context/context.toml', 'rb') as f:
Expand Down Expand Up @@ -449,7 +460,8 @@
# Additional templates that should be rendered to pages, maps page names to
# template names.
html_additional_pages = {
"index": "home.html"
"index": "home.html",
"team": "team.html"
}

# If false, no module index is generated.
Expand Down
127 changes: 127 additions & 0 deletions contributors.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,127 @@
[
{
"login": "garyfallidis",
"fullname": "Eleftherios Garyfallidis",
"affiliation": "Indiana University, IN, USA",
"priority": 1
},
{
"login": "skoudoro",
"fullname": "Serge Koudoro",
"affiliation": "Indiana University, IN, USA",
"priority": 3
},
{
"login": "ranveeraggarwal",
"fullname": "Ranveer Aggarwal",
"affiliation": "Microsoft, Hyderabad, Telangana, India"
},
{
"login": "marccote",
"fullname": "Marc Alexandre Cote",
"affiliation": "Microsoft Research, Montreal, QC, CA"
},
{
"login": "karandeepsj",
"fullname": "Karandeep Singh Juneja",
"affiliation": "International Institute of Information Technology, Hyderabad, India"
},
{
"login": "dmreagan",
"fullname": "David Reagan",
"affiliation": "Indiana University, IN, USA"
},

{
"login": "arokem",
"fullname": "Ariel Rokem",
"affiliation": "University of Washington, WA, USA",
"priority": 2
},
{
"login": "matthew-brett",
"fullname": "Matthew Brett",
"affiliation": "Birmingham University, Birmingham, UK"
},
{
"login": "khessijordan",
"fullname": "Khessi Jordan",
"affiliation": "University of California, San Francisco, CA, USA"
},
{
"login": "omarocegueda",
"fullname": "Omar Ocegueda",
"affiliation": "Google, San Francisco, CA"
},
{
"login": "mrbago",
"fullname": "Bago Amirbekian",
"affiliation": "Databricks, San Francisco, CA, USA"
},
{
"login": "grlee77",
"fullname": "Gregory R. Lee",
"affiliation": "Cincinnati Children’s Hospital Medical Center, Cincinnati, OH, USA"
},
{
"login": "stefanv",
"fullname": "Stefan Van der Walt",
"affiliation": "University of California, Berkeley, CA, USA"
},
{
"login": "albayenes",
"fullname": "Enes Albay",
"affiliation": ""
},
{
"login": "jhlegaretta",
"fullname": "John Legaretta",
"affiliation": "University of Sherbrooke, QC, CA"
},
{
"login": "gauvinalexandre",
"fullname": "Alexander Gauvin",
"affiliation": "University of Sherbrooke, QC, CA"
},
{
"login": "theaverageguy",
"fullname": "Yash Sherry",
"affiliation": "MIT Research Affiliate"
},
{
"login": "stongeetienne",
"fullname": "Etienne St-Onge",
"affiliation": "University of Sherbrooke, QC, CA"
},
{
"login": "cnguyen",
"fullname": "Christopher Nguyen",
"affiliation": "Massachusetts General Hospital, MA, USA"
},
{
"login": "samuelstjean",
"fullname": "Samuel St-Jean",
"affiliation": "University Medical Center (UMC) Utrecht, Utrecht, NL"
},
{
"login": "borda",
"fullname": "Jiri Borovec",
"affiliation": "Czech Technical University, Prague, CZ"
},
{
"login": "yarikoptic",
"fullname": "Yaroslav Halchenko",
"affiliation": "Center for Open Neuroscience , Darmouth, US"
},
{
"login": "arybinski",
"fullname": "Adam Rybinski",
"affiliation": ""
},
{
"login": "wasserth",
"fullname": "Jakob Wasserthal",
"affiliation": "DKFZ MIC - German Cancer Research Center, Germany"
}

]
Loading