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

@ -10,7 +10,7 @@ home: yes
<div class="content container-fluid">
<div data-scroll-index="{{post_number}}" class="row">
<div class="transp-bg padded event-info col-sm-2">
<a class="event-date padded button hvr-sweep-to-top" href={{first_post.url}}>
<a class="event-date padded button hvr-sweep-to-top" href="{{ first_post.url }}">
<h2>Upcoming session</h2>
<h3>#{{first_post.number}}</h3>
<h4>{{first_post.date_text}}</h4>
@ -19,10 +19,10 @@ home: yes
{% endif %}
<div class="padded_vert">
<ul>
{% for talk in first_post.talks %}
{% for talk in first_post.talks %}
{% if talk.topics %}
{% assign tags = (talk.topics | split:",") %}
{% for tag in tags | uniq %}
{% assign tags = talk.topics | split: "," | uniq %}
{% for tag in tags %}
<li>{{tag}}</li>
{% endfor %}
{% endif %}
@ -30,9 +30,9 @@ home: yes
</ul>
{% if first_post.location %}
<ul>
<li><a class="highlight button hvr-sweep-to-top" href={{first_post.location_website}} target="_blank">{{first_post.location}}</a></li>
<li><a class="highlight button hvr-sweep-to-top" href="{{ first_post.location_website }}" target="_blank">{{first_post.location}}</a></li>
{% if first_post.fb_event_url %}
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href={{first_post.fb_event_url}}><i class="fa fa-facebook-square"></i></a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href="{{ first_post.fb_event_url }}"><i class="fa fa-facebook-square"></i></a></li>
{% endif %}
</ul>
{% endif %}
@ -45,30 +45,31 @@ home: yes
<div class="talk col-sm-{{col_width}}">
<div class="artist-media">
{% if {{talk.media_artist_url}} %}
<img src={{talk.media_artist_url}}></img>
{% if talk.media_artist_url %}
<img src="{{ talk.media_artist_url }}" />
{% else %}
<img src="/assets/no_artist_media.png"></img>
<img src="/assets/no_artist_media.png" />
{% endif %}
</div>
<div class="talk-detail">
<h4>{{talk.artist}} / {{talk.title}}</h4>
{% if (talk.description | size) > 300 %}
{% assign description_length = talk.description | size %}
{% if talk.description and description_length > 300 %}
<p>{{talk.description | truncate: 300 }}</p>
{% else %}
{% elsif talk.description %}
<p>{{talk.description}}</p>
{% endif%}
{% if talk.artist_website %}
<a class="button hvr-sweep-to-top" href={{talk.artist_website}} target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="{{ talk.artist_website }}" target="_blank"><i class="fa fa-link"></i> Website</a>
{% endif %}
{% if talk.video_artist_url %}
<br>
<a class="button hvr-sweep-to-top" href={{talk.video_artist_url}} target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="{{ talk.video_artist_url }}" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
{% endif %}
{% if talk.talk_video_url %}
<br>
<a class="button hvr-sweep-to-top" href={{talk.talk_video_url}} target="_blank"><i class="fa fa-video-camera"></i> Talk at Scope</a>
<a class="button hvr-sweep-to-top" href="{{ talk.talk_video_url }}" target="_blank"><i class="fa fa-video-camera"></i> Talk at Scope</a>
{% endif %}
</div>
</div>
@ -98,12 +99,12 @@ home: yes
<div class="padded event-info col-sm-2 col-sm-offset-1 ">
<a class="event-date padded button hvr-sweep-to-top" href={{post.url}}>
<a class="event-date padded button hvr-sweep-to-top" href="{{ post.url }}">
{% if (post.layout == 'event-special') %}
{% if post.layout == 'event-special' %}
<h4>Special event</h4>
<h3>{{post.number}}</h3>
{% elsif (post.layout == 'event-spektrum') %}
{% elsif post.layout == 'event-spektrum' %}
<h4>Spektrum event</h4>
<h3>{{post.number}}</h3>
{% else %}
@ -120,8 +121,8 @@ home: yes
<ul>
{% for talk in post.talks %}
{% if talk.topics %}
{% assign tags = (talk.topics | split:",") %}
{% for tag in tags | uniq %}
{% assign tags = talk.topics | split: "," | uniq %}
{% for tag in tags %}
<li>{{tag}}</li>
{% endfor %}
{% endif %}
@ -132,9 +133,9 @@ home: yes
<div class="padded_vert">
{% if post.location %}
<ul>
<li><a class="highlight button hvr-sweep-to-top" href={{post.location_website}} target="_blank">{{post.location}}</a></li>
<li><a class="highlight button hvr-sweep-to-top" href="{{ post.location_website }}" target="_blank">{{post.location}}</a></li>
{% if post.fb_event_url %}
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href={{post.fb_event_url}}><i class="fa fa-facebook-square"></i></a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href="{{ post.fb_event_url }}"><i class="fa fa-facebook-square"></i></a></li>
{% endif %}
</ul>
{% endif %}
@ -155,30 +156,31 @@ home: yes
<div class="talk col-sm-{{col_width}}">
<div class="artist-media">
{% if {{talk.media_artist_url}} %}
<img src={{talk.media_artist_url}}></img>
{% if talk.media_artist_url %}
<img src="{{ talk.media_artist_url }}" />
{% else %}
<img src="/assets/no_artist_media.png"></img>
<img src="/assets/no_artist_media.png" />
{% endif %}
</div>
<div class="talk-detail">
<h4>{{talk.artist}} / {{talk.title}}</h4>
{% if (talk.description | size) > 300 %}
{% assign description_length = talk.description | size %}
{% if talk.description and description_length > 300 %}
<p>{{talk.description | truncate: 300 }}</p>
{% else %}
{% elsif talk.description %}
<p>{{talk.description}}</p>
{% endif%}
{% if talk.artist_website %}
<a class="button hvr-sweep-to-top" href={{talk.artist_website}} target="_blank"><i class="fa fa-link"></i> Website</a>
<a class="button hvr-sweep-to-top" href="{{ talk.artist_website }}" target="_blank"><i class="fa fa-link"></i> Website</a>
{% endif %}
{% if talk.video_artist_url %}
<br>
<a class="button hvr-sweep-to-top" href={{talk.video_artist_url}} target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
<a class="button hvr-sweep-to-top" href="{{ talk.video_artist_url }}" target="_blank"><i class="fa fa-video-camera"></i> Artist video</a>
{% endif %}
{% if talk.talk_video_url %}
<br>
<a class="button hvr-sweep-to-top" href={{talk.talk_video_url}} target="_blank"><i class="fa fa-video-camera"></i> Talk at Scope</a>
<a class="button hvr-sweep-to-top" href="{{ talk.talk_video_url }}" target="_blank"><i class="fa fa-video-camera"></i> Talk at Scope</a>
{% endif %}
</div>