Skip to content

Commit

Permalink
Add my Igalia Chats CSSWG F2F interview to the talks page
Browse files Browse the repository at this point in the history
  • Loading branch information
andreubotella committed Jun 25, 2024
1 parent 26c8c16 commit fe7613a
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 3 deletions.
16 changes: 15 additions & 1 deletion _includes/talks-layout.njk
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ additional_css:
<main>
<h1>{{ title | md(true) | safe }}</h1>

<p>These are various talks I’ve given at various events about my work on web
<p>These are various talks and interviews I’ve given about my work on web
browsers and standards.</p>

{% for talk in talks %}
Expand All @@ -21,7 +21,11 @@ additional_css:
{%- elif not loop.first -%}
,
{%- endif %}
{% if cospeaker.url %}
<a target="_new" href="{{ cospeaker.url }}">{{ cospeaker.name }}</a>
{%- else %}
{{ cospeaker.name }}
{%- endif %}
{%- if loop.last -%}
)
{%- endif %}
Expand All @@ -30,7 +34,11 @@ additional_css:
{% endif %}

<dl>
{% if talk.type != "interview" %}
<dt>Event:</dt>
{% else %}
<dt>Part of:</dt>
{% endif %}
<dd><a target="_new" href="{{ talk.event.url }}">{{ talk.event.name }}</a></dd>
<dt>Date:</dt>
{% if (talk.date | string) === talk.date %}
Expand All @@ -42,12 +50,18 @@ additional_css:
<dd>{{ talk.target }}</dd>
<dt>Length:</dt>
<dd>{{ talk.length }}</dd>
{% if talk.url %}
<dt>Link:</dt>
<dd><a target="_new" href={{ talk.url }}>{{ talk.url }}</a></dd>
{% endif %}
{% if (talk.type != "interview") or talk.slides %}
<dt>Slides:</dt>
{% if talk.slides %}
<dd><a target="_new" href="{{ talk.slides }}">{{ talk.slides }}</a></dd>
{% else %}
<dd>TODO</dd>
{% endif %}
{% endif %}
</dl>

{% if talk.youtubeId %}
Expand Down
26 changes: 24 additions & 2 deletions talks.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,33 @@
title: Talks
title: Talks and interviews
layout: talks-layout.njk
metas:
description: >
A number of talks I've given at various events about my work on web browsers
A number of talks and interviews I've given about my work on web browsers
and standards.
talks:
- name: "Igalia Chats: CSS Working Group Face To Face Live!"
type: interview
coSpeakers:
- name: other CSS Working Group members
event:
name: Igalia Chats
url: https://www.igalia.com/chats
date: 2024-06-19
length: ~1 hour (my interview was ~11 minutes)
youtubeId: m-V43qO3jrc?start=923
url: https://www.igalia.com/chats/css-ftf-live-2024
description: |
As part of the CSS Working Group Face-to-Face meeting that Igalia
organized in June 2024, Brian Kardell and Eric Meyer did an episode of
[Igalia Chats](https://www.igalia.com/chats) interviewing various CSSWG
members, me included.
In it, I am being interviewed by Eric Meyer about my work on `line-clamp`,
why it needs fixing, how it interacts with CSS Working Group discussions,
and the implementation in Chromium. My interview starts at timestamp
15:19.
- name: Past and future of server-side runtimes
coSpeakers:
- name: Nicolò Ribaudo
Expand Down

0 comments on commit fe7613a

Please sign in to comment.