-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #29 from sanger-pathogens/Mar22_updates
Mar22 updates
- Loading branch information
Showing
44 changed files
with
227 additions
and
145 deletions.
There are no files selected for viewing
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.
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.
Binary file added
BIN
+1.69 MB
...allery/Narender_s first lunch at Sulston building with Steph since lockdown.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+399 KB
public/gallery/Steph_Nida_Meeting during pandemics on Genome campus.jpg
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.
Binary file not shown.
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.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
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.
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.
Oops, something went wrong.
Oops, something went wrong.
This file contains 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,16 @@ | ||
import React from 'react'; | ||
import { Box } from '@material-ui/core'; | ||
|
||
const Gallery = () => ( | ||
<Box> | ||
<img src="/gallery/Get together at Jesus Green.jpg" alt="Get together at Jesus Green" width="50%" /> | ||
<img src="/gallery/IMG_4013.png" alt="Lunch on the Wellcome Genome Campus grounds" width="50%" /> | ||
<img src="/gallery/Narender_s first lunch at Sulston building with Steph since lockdown.jpg" alt="Narender's first lunch at Sulston building with Steph since lockdown" width="50%" /> | ||
<img src="/gallery/Steph_Nida_Meeting during pandemics on Genome campus.jpg" alt="Steph and Nida meeting during pandemics on Genome campus" width="50%" /> | ||
<img src="/gallery/IMG_4012.png" alt="First group lab meeting after the pandemic" width="50%" /> | ||
<img src="/gallery/IMG_4014.png" alt="Steph and Uzma talking from a social distance" width="50%" /> | ||
<img src="/gallery/Get together in front of King_s college.JPG" alt="Get together in front of King's college" width="100%" /> | ||
</Box> | ||
); | ||
|
||
export default Gallery; |
This file contains 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,14 @@ | ||
import React from 'react'; | ||
import raw from 'raw.macro'; | ||
|
||
import Markdown from './Markdown'; | ||
|
||
const mdJoin = raw('../content/joinus.md'); | ||
|
||
const JoinUs = () => ( | ||
<React.Fragment> | ||
<Markdown md={mdJoin} /> | ||
</React.Fragment> | ||
); | ||
|
||
export default JoinUs; |
This file contains 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,30 @@ | ||
import React from 'react'; | ||
import raw from 'raw.macro'; | ||
import { Grid, Box, Typography, Link } from '@material-ui/core'; | ||
|
||
import outreach from '../content/outreach'; | ||
import Markdown from './Markdown'; | ||
import TeamDescriptionRenderer from './TeamDescriptionRenderer'; | ||
|
||
const Item = ({ title, url, description, image }) => ( | ||
<Box> | ||
<img src={image} alt ={`${title}`} width="100%" /> | ||
<Link variant="h6" href={url}>{title}</Link> | ||
<TeamDescriptionRenderer md={description} /> | ||
</Box> | ||
); | ||
|
||
const Outreach = () => ( | ||
<Box pt={4} pb={4}> | ||
<Grid container spacing={2}> | ||
{outreach.map(item => ( | ||
<Grid key={item.title} item xs={12} sm={6} md={4} lg={4}> | ||
<Item {...item} /> | ||
</Grid> | ||
))} | ||
</Grid> | ||
</Box> | ||
); | ||
|
||
|
||
export default Outreach; |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains 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 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 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 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 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,9 @@ | ||
- [Sanger's 4-Year PhD Programme](https://www.sanger.ac.uk/about/study/phd-programmes/4-year-phd-programme/) | ||
|
||
- [Sanger's Clinical PhD Programme](https://www.sanger.ac.uk/about/study/phd-programmes/clinical-phd-programme/) | ||
|
||
- [Sanger's MPhil Programme](https://www.sanger.ac.uk/about/study/masters-programmes/) | ||
|
||
- [SEED Postdoctoral Fellowships](https://www.sanger.ac.uk/about/careers/seed-fellowship-sanger-evolutionary-and-epidemiological-dynamics/) | ||
|
||
- [Gates Cambridge Scholarship Programme](https://www.cam.ac.uk/gatesalumni) |
This file contains 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 |
---|---|---|
@@ -1,7 +1,9 @@ | ||
[ | ||
{ "label": "About Us", "url": "about"}, | ||
{ "label": "Research", "url": "research"}, | ||
{ "label": "Software", "url": "software"}, | ||
{ "label": "Publications & Software", "url": "software"}, | ||
{ "label": "Team", "url": "team"}, | ||
{ "label": "Publications", "url": "publications"} | ||
{ "label": "Outreach", "url": "outreach"}, | ||
{ "label": "Gallery", "url": "gallery"}, | ||
{ "label": "Join Us", "url": "joinus"} | ||
] |
This file contains 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,14 @@ | ||
[ | ||
{ | ||
"title": "Decoding Life Podcast", | ||
"url": "https://anchor.fm/decoding-life-pod", | ||
"description": "This podcast tells stories of the science at the Wellcome Genome Campus and the people behind it. From PhD students to group leaders, software developers to diversity champions -- we speak with these individuals and discover the paths they have taken throughout their careers, what it’s really like to do some of these jobs, and learn about some of the science along the way. This podcast is co-hosted by Kathryn Murie and Sophie Belman and is funded by [Wellcome Genome Campus Public Engagement](https://publicengagement.wellcomeconnectingscience.org/). It is available to listen on [Spotify](https://open.spotify.com/show/2J2W9Ob3GHdTzRUh8GrUmq?si=wrNwAoVJRd21YGHZiJ1C0g&dl_branch=1&nd=1), [Apple Podcasts](https://podcasts.apple.com/us/podcast/decoding-life/id1556132006), or anywhere else you get your podcasts.", | ||
"image": "/decodinglife.png" | ||
}, | ||
{ | ||
"title": "Your Digital Mentor Podcast", | ||
"url": "https://coursesandconferences.wellcomeconnectingscience.org/our-events/your-digital-mentor-podcast/", | ||
"description": "The podcast is a series that aims to provide access to conversations around mentoring and other aspects of research and career development. This is delivered as part of a collaborative project between the [Wellcome Sanger Institute](https://www.sanger.ac.uk/), [Wellcome Connecting Science](https://www.wellcomeconnectingscience.org/), and the [Social Entrepreneurship to Spur Health](https://www.seshglobal.org/).", | ||
"image": "/digitalmentor.png" | ||
} | ||
] |
This file contains 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 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.