Skip to content

Commit 81b54f6

Browse files
committed
add bluesky
1 parent 3a00a10 commit 81b54f6

File tree

6 files changed

+25
-2
lines changed

6 files changed

+25
-2
lines changed

_data/team/sebastian-funk.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Sebastian Funk
22
webpage: https://www.lshtm.ac.uk/aboutus/people/funk.sebastian
33
github: sbfnk
4-
twitter: sbfnk
4+
bluesky: sbfnk.bsky.social
55
orcid: 0000-0002-2842-3406
66
current-member: true
77
description: >

_team_member.Rmd

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,10 @@ if ("{{twitter}}" != "") {
3535
if ("{{orcid}}" != "") {
3636
title <- paste(title, icon_link("ai ai-orcid", url = "https://orcid.org/{{orcid}}"))
3737
}
38+
39+
if ("{{bluesky}}" != "") {
40+
title <- paste(title, icon_link("bi bi-bluesky", url = "https://{{bluesky}}"))
41+
}
3842
```
3943

4044
### `r title`
@@ -57,4 +61,4 @@ if ("{{github}}" != "") {
5761

5862
:::
5963

60-
::::
64+
::::

images/bluesky.svg

Lines changed: 1 addition & 0 deletions
Loading

index.qmd

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ title: "EpiForecasts"
33
description: |
44
Real-time modelling and forecasting of infectious disease dynamics
55
site: distill::distill_website
6+
resources:
7+
- "images/forecast.svg"
68
---
79

810
```{r setup, include=FALSE}

people.qmd

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
---
22
title: "People"
33
link-external-icon: false
4+
resources:
5+
- "images/bluesky.svg"
46
---
57

8+
<script src="https://kit.fontawesome.com/52811a1d50.js" crossorigin="anonymous"></script>
9+
610
```{r setup, include=FALSE}
711
knitr::opts_chunk$set(echo = FALSE)
812
library(dplyr)
@@ -24,6 +28,7 @@ current_team %>%
2428
webpage = e[["webpage"]],
2529
github = e[["github"]],
2630
twitter = e[["twitter"]],
31+
bluesky = e[["bluesky"]],
2732
orcid = e[["orcid"]],
2833
description = e[["description"]]
2934
)

styles.css

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
/* https://github.com/twbs/icons/issues/1886 */
2+
.bi-bluesky::before {
3+
content: "";
4+
background-color: currentColor;
5+
-webkit-mask: url("images/bluesky.svg") no-repeat 50% 50%;
6+
mask: url("images/bluesky.svg") no-repeat 50% 50%;
7+
-webkit-mask-size: cover;
8+
mask-size: cover;
9+
height: 16px;
10+
width: 16px;
11+
}

0 commit comments

Comments
 (0)