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

@ -16,11 +16,11 @@ layout: default
</div>
<div class="padded_vert">
<ul>
<ul>
{% for talk in page.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 %}
@ -31,9 +31,9 @@ layout: default
<div class="padded_vert">
{% if page.location %}
<ul>
<li><a class="highlight button hvr-sweep-to-top" href={{page.location_website}} target="_blank">{{page.location}}</a></li>
<li><a class="highlight button hvr-sweep-to-top" href="{{ page.location_website }}" target="_blank">{{page.location}}</a></li>
{% if page.fb_event_url %}
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href={{page.fb_event_url}}><i class="fa fa-facebook-square"></i></a></li>
<li><a class="highlight button hvr-sweep-to-top" target="_blank" href="{{ page.fb_event_url }}"><i class="fa fa-facebook-square"></i></a></li>
{% endif %}
</ul>
{% endif %}
@ -48,10 +48,10 @@ layout: default
<div class="talk col-md-{{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>
@ -63,18 +63,18 @@ layout: default
<h5>About {{talk.artist}}</h5>
<p>{{talk.artist_bio}}</p>
{% endif %}
{% if talk.artist_website || talk.video_artist_url || talk.video_url %}
{% if talk.artist_website or talk.video_artist_url or talk.video_url %}
{% 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 %}
<div class="transp-bg padded">
<p>Talk's Video</p>
<iframe src="//player.vimeo.com/video/{{(talk.talk_video_url | split:"/") | last}}" width="100%" height="140" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
<iframe src="//player.vimeo.com/video/{{ talk.talk_video_url | split: "/" | last }}" width="100%" height="140" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
</div>
{% endif %}
{% endif %}
@ -116,8 +116,8 @@ layout: default
<h4>Discover more</h4>
{% if page.previous %}
<a class="button hvr-sweep-to-top left" href={{page.previous.url | prepend: site.baseurl }}>#{{page.previous.number}}: {{page.previous.date_text}} {{page.previous.title}}</a> {% endif %} {% if page.next %}
<a class="button hvr-sweep-to-top right" href={{page.next.url | prepend: site.baseurl }}>#{{page.next.number}}: {{page.next.date_text}} {{page.next.title}}</a> {% endif %}
<a class="button hvr-sweep-to-top left" href="{{ page.previous.url | prepend: site.baseurl }}">#{{page.previous.number}}: {{page.previous.date_text}} {{page.previous.title}}</a> {% endif %} {% if page.next %}
<a class="button hvr-sweep-to-top right" href="{{ page.next.url | prepend: site.baseurl }}">#{{page.next.number}}: {{page.next.date_text}} {{page.next.title}}</a> {% endif %}
</div>