diff --git a/conf.py b/conf.py index 1007f87..aaffe59 100644 --- a/conf.py +++ b/conf.py @@ -136,9 +136,10 @@ TRANSLATIONS_PATTERN = "{path}.{lang}.{ext}" NAVIGATION_LINKS = { DEFAULT_LANG: ( - ("/archive.html", "archive"), ("/about/", "about"), + ("/talks/", "talks"), ("/tags/", "tags"), + ("/archive.html", "archive"), ("/rdm-resources/", "rdm resources"), ("/rss.xml", "feed"), ), diff --git a/data/talks.yaml b/data/talks.yaml new file mode 100644 index 0000000..4015391 --- /dev/null +++ b/data/talks.yaml @@ -0,0 +1,11 @@ +--- +talks: +- title: "Community-building online: challenges" + date: 2020-10-29 + location: SSI Fellows Community Call (online) + url: 2020-10-community-call.html +# Template +# - title: +# date: +# location: +# url: diff --git a/pages/talks.md b/pages/talks.md new file mode 100644 index 0000000..33b885e --- /dev/null +++ b/pages/talks.md @@ -0,0 +1,43 @@ +--- +title: Talks +date: 2020-10-21 14:00:04 UTC+01:00 +slug: talks +type: text +data: data/talks.yaml +--- + +Here is a selection of talks that I've given. + +{{% template %}} +<%! import datetime %> + + + + + + + + + % for talk in post.data("talks"): + + + + + + % endfor +
DateTitleLocation
+ % if 'date' in talk: + ${talk['date'].strftime('%a')} + % endif + + % if 'url' in talk: + + % endif + ${talk['title']} + % if 'url' in talk: + + % endif + + ${talk.get('location', '')} +
+{{% /template %}} diff --git a/static/talks/2020-10-community-call.html b/static/talks/2020-10-community-call.html new file mode 100644 index 0000000..28b4988 --- /dev/null +++ b/static/talks/2020-10-community-call.html @@ -0,0 +1,23 @@ + + + + Oct 2020 Community Call + + + + + Oct 2020 Community Call + + + + + + + diff --git a/static/talks/2020-10-community-call.md b/static/talks/2020-10-community-call.md new file mode 100644 index 0000000..04e7e9f --- /dev/null +++ b/static/talks/2020-10-community-call.md @@ -0,0 +1,115 @@ +class: title, right, middle + +# Community-building online + +## SSI Fellows Community Call + +*October 2020* + +**Jez Cope** +Data Services Lead +The British Library + +--- + +# Agenda + +1. My fellowship plans +2. (Not) gaining momentum +3. Open Life Sciences programme + +??? + +**TODO:** update agenda with final overview + +--- + +# My fellowship plans + +Help people doing data science in cultural heritage feel a bit less isolated + +Do this by building a community, first in the British Library, then wider + +--- + +# Then COVID happened… + +-- + +1. No face-to-face events for the foreseeable future 😷 +2. Down a team-member during a recruitment freeze 🤦‍ + +-- + +.center[![Shrugging muppet](https://media.giphy.com/media/jPAdK8Nfzzwt2/source.gif)] + +--- + +# On the other hand... + +> “Help people doing *data science* in *cultural heritage* feel a bit less *isolated*” + +We all need a *little more help* than usual *breaking the isolation* right now + +--- +class: middle + +# What *can* I do right now? + +--- +class: middle + +## 1. Learn + +- [Open Life Science programme](https://openlifesci.org/) +- [Mozilla Open Leadership Training Series](https://mozilla.github.io/open-leadership-training-series/) + +--- +class: middle + +## 2. Plan; Prepare + +- Fill out an [Open Canvas template](https://mozilla.github.io/open-leadership-training-series/articles/opening-your-project/develop-an-open-project-strategy-with-open-canvas/) +- Draft a README + - …a roadmap + - …a Code of Conduct +- Get the project online + [chds.netlify.app](https://chds.netlify.app/) + +--- +class: middle, center + +![My Open Canvas!](https://gitlab.com/jezcope/ssi-fellowship-2020-project/-/raw/main/images/open-canvas.png) + +--- +class: middle, center + + + +--- +class: middle + +## 3. Get feedback + +- From colleagues +- From prospective network members +- From you lot! 🚀 + +--- +class: middle, center + +# I can't be the only one… + +…so let's let's talk & help each other out + +![Tortoise helping another tortoise](https://media.giphy.com/media/jKDPsIrUnC7Re/source.gif) + +--- + +# Ideas + +- Slack channel for discussions +- Journal/reading club +- …? diff --git a/static/talks/theme.css b/static/talks/theme.css new file mode 100644 index 0000000..01b8720 --- /dev/null +++ b/static/talks/theme.css @@ -0,0 +1,63 @@ +@font-face { + font-family: 'Indie Flower'; + font-style: normal; + font-weight: 400; + src: local('Indie Flower'), local('IndieFlower'), url(https://fonts.gstatic.com/s/indieflower/v12/m8JVjfNVeKWVnh3QMuKkFcZVaUuC.ttf) format('truetype'); +} +@font-face { + font-family: 'Gentium Basic'; + font-style: normal; + font-weight: 400; + src: local('Gentium Basic'), local('GentiumBasic'), url(https://fonts.gstatic.com/s/gentiumbasic/v12/Wnz9HAw9aB_JD2VGQVR80We3LA2JjQ.ttf) format('truetype'); +} +@font-face { + font-family: 'Inconsolata'; + font-style: normal; + font-weight: 400; + font-stretch: normal; + src: url(https://fonts.gstatic.com/s/inconsolata/v20/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp4U8WR32kg.ttf) format('truetype'); +} +.remark-code, +.remark-inline-code { + font-family: 'Inconsolata'; +} +.remark-slide-content { + background: #ffffff; + font-family: 'Gentium Basic'; + font-size: 36px; +} +h1, +h2, +h3 { + font-family: 'Indie Flower'; + font-weight: normal; + color: #0B62A4; +} +em { + font-style: normal; + background-color: #FFE801; +} +p, +li { + margin: 0.5em 0; +} +blockquote { + border-left: #530FAD solid 10px; + padding-left: 1em; + margin-left: 0; +} +a, +a:visited { + color: #FF9201; + background: #ffffff; + text-decoration: none; + border-radius: 4px; + border: #FF9201 solid 2px; + padding: 0 4px; +} +a:hover { + background: #ffffff; +} +img { + max-height: 600px; +} diff --git a/static/talks/theme.less b/static/talks/theme.less new file mode 100644 index 0000000..5896b2d --- /dev/null +++ b/static/talks/theme.less @@ -0,0 +1,60 @@ +@import url(https://fonts.googleapis.com/css?family=Indie+Flower); +@import url(https://fonts.googleapis.com/css?family=Gentium+Basic); +@import url(https://fonts.googleapis.com/css?family=Inconsolata); + +@main-font: 'Gentium Basic'; +@heading-font: 'Indie Flower'; +@code-font: 'Inconsolata'; + +// http://paletton.com/#uid=73x0X0kvWv+juDcoMy4y0oPD6jw +@primary-color: #0B62A4; +@secondary-color: #530FAD; +@link-color: #FF9201; +@highlight-color: #FFE801; + +body { +} + +.remark-code, .remark-inline-code { font-family: @code-font; } +.remark-slide-content { + background: #ffffff; + font-family: @main-font; + font-size: 36px; +} + +h1, h2, h3 { + font-family: @heading-font; + font-weight: normal; + color: @primary-color; +} + +em { + font-style: normal; + background-color: @highlight-color; +} + +p, li { + margin: 0.5em 0; +} + +blockquote { + border-left: @secondary-color solid 10px; + padding-left: 1em; + margin-left: 0; +} + +a, a:visited { + color: @link-color; + background: lighten(@link-color, 80%); + text-decoration: none; + border-radius: 4px; + border: @link-color solid 2px; + padding: 0 4px; +} +a:hover { + background: lighten(@link-color, 90%); +} + +img { + max-height: 600px; +} diff --git a/themes/sidmouth b/themes/sidmouth index a2db374..3725505 160000 --- a/themes/sidmouth +++ b/themes/sidmouth @@ -1 +1 @@ -Subproject commit a2db3742a0a1d5dfc3e4475a2d52eb5e9b2672a9 +Subproject commit 3725505f6c5d10775b91f5954c8631582ba534c1