-
Notifications
You must be signed in to change notification settings - Fork 15
Add team page #697
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
Open
davehorsfall
wants to merge
8
commits into
feat/events-update
Choose a base branch
from
feat/team-page
base: feat/events-update
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Add team page #697
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
44a6ee2
draft team page
davehorsfall fa5eaf4
update team csv
davehorsfall 6f4d3d0
Add image for Phil Reed
PhilReedData a6c3417
Add Phil Reed details
PhilReedData 85d3023
Merge branch 'feat/events-update' into feat/team-page
davehorsfall f0b2467
Merge branch 'feat/team-page' of github.com:direct-framework/direct-w…
davehorsfall 1bb4561
update and address review comments
davehorsfall c7e39c5
change contributor rendering to list
davehorsfall File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,39 @@ | ||
| name,group,role,bio,image,email,github,twitter,linkedin | ||
| Dave Horsfall,Team,Project Co-lead,Leads the DIRECT framework and strategy,assets/img/team/dave-horsfall.webp,,https://github.com/davehorsfall,, | ||
| Aleks Nenadic,Team,Project Co-lead,Leads the DIRECT framework and strategy,assets/img/team/aleksandra-nenadic.webp,,https://github.com/anenadic,, | ||
| Adrian D'Alessandro,Team,WebApp Lead,Oversees WebApp architecture and implementation,assets/img/team/adrian-dalessandro.webp,,https://github.com/AdrianDAlessandro,, | ||
| Ryan Smith,Contributor,,,,,,, | ||
| Andrew Gait,Contributor,,,,,,, | ||
| Bryn Ubald,Contributor,,,,,,, | ||
| Jason Klebes,Contributor,,,,,,, | ||
| Sam Bland,Team,WebApp Team,,,,,, | ||
| Barney Dobson,Contributor,,,,,,, | ||
| Saranjeet Kaur,Team,WebApp Team,,,,,, | ||
| Aman Goel,Team,Framework Team,,,,,, | ||
| Phil Reed,Team,Engagement Lead,Leads the engagement and adoption activities,assets/img/team/phil-reed.webp,,https://github.com/PhilReedData,, | ||
| Toby Hodges,Contributor,,,,,,, | ||
| GeoDaoyu,Contributor,,,,,,, | ||
| Christopher Cave-Ayland,Contributor,,,,,,, | ||
| Sahil Raja,Contributor,,,,,,, | ||
| Connor Aird,Contributor,,,,,,, | ||
| Emma Hogan,Team,Framework Team,,,,,, | ||
| Matt Craddock,Contributor,,,,,,, | ||
| Tamora James,Team,WebApp Team,,,,,, | ||
| Becky Osselton,Contributor,,,,,https://github.com/rosselton,, | ||
| Eli Chadwick,Contributor,,,,,,, | ||
| Gabriel Hanganu,Contributor,,,,,,, | ||
| Hannah Williams,Contributor,,,,,,, | ||
| Matthew Bluteau,Contributor,,,,,,, | ||
| Patricia Loto,Contributor,,,,,,, | ||
| Camille Santistevan,Contributor,,,,,,, | ||
| Ella Kaye,Contributor,,,,,,, | ||
| Jonathan Cooper,Team,Framework Team,,,,,, | ||
| Samantha Wittke,Contributor,,,,,,, | ||
| Sarah Gibson,Contributor,,,,,,, | ||
| Iain Barrass,Contributor,,,,,,, | ||
| Lieke de Boer,Contributor,,,,,,, | ||
| Martin O'Reilly,Contributor,,,,,,, | ||
| Nadine Spychala,Contributor,,,,,,, | ||
| Paul K Korir,Contributor,,,,,,, | ||
| Sean Marshallsay,Contributor,,,,,,, | ||
| Diego Alonso Alvarez,Contributor,,,,,,, |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,94 @@ | ||
| {% extends "main/base.page.html" %} | ||
| {% load static %} | ||
| {% block title %} | ||
| Digital Research Competencies Framework | ||
| {% endblock title %} | ||
| {% block breadcrumb_items %} | ||
| <li class="breadcrumb-item">About</li> | ||
| <li class="breadcrumb-item active" aria-current="page">Our Team</li> | ||
| {% endblock breadcrumb_items %} | ||
| {% block content %} | ||
| <section id="about"> | ||
| <div class="row"> | ||
| <h1 class="mb-5">Team Members</h1> | ||
| <div class="row mb-5"> | ||
| {% for member in team_members %} | ||
| <div class="col-lg-3 col-md-6 mb-4"> | ||
| <div class="text-center"> | ||
| {% if member.image %} | ||
| <img src="{{ member.image }}" | ||
| alt="{{ member.name }}" | ||
| class="img-fluid rounded-circle mb-3" | ||
| style="width: 160px; | ||
| height: 160px; | ||
| object-fit: cover" /> | ||
| {% else %} | ||
| <div class="bg-secondary rounded-circle d-inline-flex justify-content-center align-items-center mb-3" | ||
| style="width: 160px; | ||
| height: 160px"></div> | ||
| {% endif %} | ||
| <h5 class="fw-semibold mb-1">{{ member.name }}</h5> | ||
| <p class="text-muted mb-2">{{ member.role }}</p> | ||
| <p class="small">{{ member.bio }}</p> | ||
| <ul class="list-inline mt-3"> | ||
| {% if member.email %} | ||
| <li class="list-inline-item"> | ||
| <a href="mailto:{{ member.email }}" | ||
| class="text-decoration-none px-1" | ||
| aria-label="Email {{ member.name }}"> | ||
| <i class="fa-solid fa-envelope"></i> | ||
| </a> | ||
| </li> | ||
| {% endif %} | ||
| {% if member.github %} | ||
| <li class="list-inline-item"> | ||
| <a href="{{ member.github }}" | ||
| target="_blank" | ||
| class="text-decoration-none px-1" | ||
| aria-label="View {{ member.name }} on GitHub"> | ||
| <i class="fa-brands fa-github"></i> | ||
| </a> | ||
|
davehorsfall marked this conversation as resolved.
|
||
| </li> | ||
| {% endif %} | ||
| {% if member.twitter %} | ||
| <li class="list-inline-item"> | ||
| <a href="{{ member.twitter }}" | ||
| target="_blank" | ||
| class="text-decoration-none px-1" | ||
| aria-label="View {{ member.name }} on Twitter"> | ||
| <i class="fa-brands fa-twitter"></i> | ||
| </a> | ||
| </li> | ||
| {% endif %} | ||
| {% if member.linkedin %} | ||
| <li class="list-inline-item"> | ||
| <a href="{{ member.linkedin }}" | ||
| target="_blank" | ||
| class="text-decoration-none px-1" | ||
| aria-label="View {{ member.name }} on LinkedIn"> | ||
| <i class="fa-brands fa-linkedin"></i> | ||
|
Comment on lines
+44
to
+69
|
||
| </a> | ||
| </li> | ||
| {% endif %} | ||
| </ul> | ||
| </div> | ||
| </div> | ||
| {% endfor %} | ||
| </div> | ||
| <h2 class="mb-3">Contributors</h2> | ||
| <ul class="list-inline mb-0"> | ||
| {% for contributor in contributors %} | ||
| <li class="list-inline-item me-3 mb-1"> | ||
| {% if contributor.github %} | ||
| <a href="{{ contributor.github }}" target="_blank">{{ contributor.name }}</a> | ||
| {% else %} | ||
| {{ contributor.name }} | ||
| {% endif %} | ||
| </li> | ||
| {% empty %} | ||
| <li class="list-inline-item">No contributors listed.</li> | ||
| {% endfor %} | ||
| </ul> | ||
| </div> | ||
| </section> | ||
| {% endblock content %} | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.