upgraded jekyll and bundle

This commit is contained in:
randogoth 2025-12-22 14:38:43 +02:00
parent 8b0d19ab35
commit 36bfce14b4
127 changed files with 4647 additions and 4225 deletions

View file

@ -52,14 +52,15 @@ permalink: /video/
{% for talk in post.talks %}
{% if talk.talk_video_url %}
{% assign vimeo_id = talk.talk_video_url %}
{% assign tags = "" | split: "" %}
{% if talk.topics %}
{% assign tags = (talk.topics | split:",") %}
{% assign tags = talk.topics | split: "," | uniq %}
{% endif %}
<div class="videobox {% for tag in tags | uniq %}{{tag | strip | replace: " ", "-" | downcase}} {% endfor %}{{post.location | strip | replace: " ", "-" | downcase}} col-sm-3" vimeo="{{vimeo_id}}">
<div class="video-title">{{talk.artist}}</div>
<div class="playbutton"></div>
<div class="video-description"><h3>{{talk.title}}</h3><p><span class="video-session">Session #{{ post.number }}, {{post.date_text}}</span>: <span class="video-artist">{{talk.artist}}</span> / {{talk.artist_website}} {{talk.description}}</p><p class="visible-lg">{{talk.artist_bio}}</p></div>
</div>
<div class="videobox {% for tag in tags %}{{tag | strip | replace: " ", "-" | downcase}} {% endfor %}{{post.location | strip | replace: " ", "-" | downcase}} col-sm-3" vimeo="{{vimeo_id}}">
<div class="video-title">{{talk.artist}}</div>
<div class="playbutton"></div>
<div class="video-description"><h3>{{talk.title}}</h3><p><span class="video-session">Session #{{ post.number }}, {{post.date_text}}</span>: <span class="video-artist">{{talk.artist}}</span> / {{talk.artist_website}} {{talk.description}}</p><p class="visible-lg">{{talk.artist_bio}}</p></div>
</div>
{% endif %}
{% endfor %}
{% endfor %}