Skip to content

Commit

Permalink
:nail_polish: Adds the presenter name to youtube speaker template
Browse files Browse the repository at this point in the history
  • Loading branch information
tim-schilling committed Oct 22, 2024
1 parent 67402fe commit da6178b
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/youtube-talks.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,14 @@ <h1 class="text-center pageheading">{{ title }}</h1>
<div class="flex items-center justify-between gap-2 mx-2">
<h4 class="flex-grow mr-2">
<span>{{ day[0] | formatDateTime: "LLL d " }}{{ slot.start | formatDateTime: "h:mm aaa" }} EDT -</span>
<span id="copy-{{ session.title|slugify }}-title">{{ session.title }}</span>
<span id="copy-{{ session.title|slugify }}-title">
{{ session.title }} with
{% for presenter_slug in session.presenter_slugs %}
{% assign presenter = collections.presenters | find:presenter_slug %}
{% if not forloop.first %} and {% endif %}
{{ presenter.data.name }}
{% endfor %}
</span>
</h4>
{% if post.video_url %}
<div class="btn bg-blue-200 border-solid border-2 border-grey-800 rounded-lg px-2 py-1 whitespace-nowrap" >
Expand Down

0 comments on commit da6178b

Please sign in to comment.