From 996293559779a41bdb708f6233352c0afbf93c6b Mon Sep 17 00:00:00 2001 From: tvluke <tvluke@chaotikum.org> Date: Mon, 29 May 2023 18:52:32 +0200 Subject: [PATCH] more video stuff, preview images in overview --- _includes/media-in-list.html | 9 ++------- _includes/site-header.html | 10 ++++++---- 2 files changed, 8 insertions(+), 11 deletions(-) diff --git a/_includes/media-in-list.html b/_includes/media-in-list.html index 8e768dc1..ed80a2bd 100644 --- a/_includes/media-in-list.html +++ b/_includes/media-in-list.html @@ -1,12 +1,7 @@ <li class="item item--post"> <article class="article article--post"> - {% if video.image -%} - {% if video.image contains '://' -%} - <img src="{{video.image}}" alt="" width=50% height=50% style="float: left; margin: 0 15px 0 0;"/> - {% else -%} - <img src="{{site.baseurl}}/images/thumbnails/{{video.image}}" alt="" width=50% height=50% style="float: right; margin: 0 0 0 15px;"/> - {% endif -%} - {% endif -%} + {%- assign realslug = video.url | split:'/' | last -%} + <img src="https://video.chaotikum.net/thumbnails/{{realslug}}_play.png" alt="" width=50% height=50% style="float: right; margin: 0 0 0 15px;"/> <h2><a href="{{ site.baseurl }}{{ video.url }}">{{ title | markdownify | remove: '<p>' | remove: '</p>' | strip_newlines }}</a></h2> <div class="teaser"> {{ video.excerpt | strip_html | markdownify | truncatewords: 60 }} diff --git a/_includes/site-header.html b/_includes/site-header.html index 9d513225..5d4f0f0e 100644 --- a/_includes/site-header.html +++ b/_includes/site-header.html @@ -20,14 +20,16 @@ <!-- no feature --> {% else %} {% include site-feature.html %} + <div class="statusmobile" style="width: 80%; margin:0 auto; margin-top: -45px; background-color: #FAFAFA;"> + {% include space-status-mobile.html %} +</div> {% endif %} {% if page.layout == "video" -%} - {% capture feature_image %}https://video.chaotikum.net/thumbnails/{{page.name}}.png{% endcapture -%} + {%- assign realslug = page.url | split:'/' | last -%} + {% capture feature_image %}https://video.chaotikum.net/thumbnails/{{realslug}}_play.png{% endcapture -%} {% endif -%} -<div class="statusmobile" style="width: 80%; margin:0 auto; margin-top: -45px; background-color: #FAFAFA;"> - {% include space-status-mobile.html %} -</div> + </header> -- GitLab