Add talks page

This commit is contained in:
Jez Cope 2020-10-21 16:58:47 +01:00
parent ecc8c3dd39
commit 7363381fb8
8 changed files with 318 additions and 2 deletions

View File

@ -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"),
),

11
data/talks.yaml Normal file
View File

@ -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:

43
pages/talks.md Normal file
View File

@ -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 %>
<table>
<thead>
<tr>
<th>Date</th>
<th>Title</th>
<th>Location</th>
</tr>
</thead>
% for talk in post.data("talks"):
<tr>
<td>
% if 'date' in talk:
${talk['date'].strftime('%a')}
% endif
</td>
<td>
% if 'url' in talk:
<a href="${talk['url']}">
% endif
${talk['title']}
% if 'url' in talk:
</a>
% endif
</td>
<td>
${talk.get('location', '')}
</td>
</tr>
% endfor
</table>
{{% /template %}}

View File

@ -0,0 +1,23 @@
<!DOCTYPE html>
<html>
<head>
<title>Oct 2020 Community Call</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<link href="theme.css" rel="stylesheet"/>
</head>
<head>
<title>Oct 2020 Community Call</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
</head>
<body>
<script src="https://remarkjs.com/downloads/remark-latest.min.js" type="text/javascript">
</script>
<script type="text/javascript">
var slideshow = remark.create({
sourceUrl: "2020-10-community-call.md",
countIncrementalSlides: false,
ratio: "16:9",
});
</script>
</body>
</html>

View File

@ -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
<iframe src="https://chds.netlify.app"
width="960" height="540" frameborder="0">
</iframe>
---
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
- …?

63
static/talks/theme.css Normal file
View File

@ -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;
}

60
static/talks/theme.less Normal file
View File

@ -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;
}

@ -1 +1 @@
Subproject commit a2db3742a0a1d5dfc3e4475a2d52eb5e9b2672a9
Subproject commit 3725505f6c5d10775b91f5954c8631582ba534c1