From 53e506d39474aff6a713cb41d4566bfb8198fb77 Mon Sep 17 00:00:00 2001
From: tvluke <tvluke@chaotikum.org>
Date: Mon, 29 May 2023 18:35:18 +0200
Subject: [PATCH] impove video stuff

---
 _includes/site-header.html |  4 ++++
 _includes/twittercard.html |  5 +++++
 _layouts/video.html        | 12 ++----------
 3 files changed, 11 insertions(+), 10 deletions(-)

diff --git a/_includes/site-header.html b/_includes/site-header.html
index a6a9d443..9d513225 100644
--- a/_includes/site-header.html
+++ b/_includes/site-header.html
@@ -22,6 +22,10 @@
     {% include site-feature.html %}
   {% endif %}
 
+  {% if page.layout == "video" -%}
+    {% capture feature_image %}https://video.chaotikum.net/thumbnails/{{page.name}}.png{% endcapture -%}
+  {% endif -%}
+
 <div class="statusmobile" style="width: 80%; margin:0 auto; margin-top: -45px; background-color: #FAFAFA;">
   {% include space-status-mobile.html %}
 </div>
diff --git a/_includes/twittercard.html b/_includes/twittercard.html
index 93908c87..42a33b36 100644
--- a/_includes/twittercard.html
+++ b/_includes/twittercard.html
@@ -12,6 +12,11 @@
   {% assign feature_image = page.image %}
 {% endif %}
 
+  {% if page.layout == "video" -%}
+    {%- assign realslug = page.url | split:'/' | last -%}
+    {% capture feature_image %}https://video.chaotikum.net/thumbnails/{{realslug}}.jpg{% endcapture -%}
+  {% endif -%}
+
 {% if feature_image %}
   {% if feature_image contains '://' %}
     <meta name="twitter:image" content="{{feature_image}}">
diff --git a/_layouts/video.html b/_layouts/video.html
index 8392cf7d..c527eb7e 100644
--- a/_layouts/video.html
+++ b/_layouts/video.html
@@ -33,20 +33,12 @@ layout: default
 
     <article class="article  article--page  typeset">
 
-	    
+    {%- assign realslug = page.url | split:'/' | last -%}
     	<div style="width: 100%; 
     		display: flex;
     		background-color:#eeeeee;
     		justify-content: center;">
-	    	{% if page.image != nil %}
-	    		{% if page.image contains '://' %}
-	    			<img src="{{ page.image }}" alt="" style="margin: 0 auto;">
-	    	 	{% else %}
-					<img src="{{ site.baseurl }}/images/thumbnails/video/{{ page.image }}" alt="" style="margin: 0 auto;">
-				{% endif %}
-	    	{% else %}
-				<img src="{{ site.baseurl }}/images/thumbnails/video/default.jpg" alt="" style="margin: 0 auto;">
-	    	{% endif %}
+	    	<img src="https://video.chaotikum.net/thumbnails/{{ realslug }}.jpg" alt="" style="margin: 0 auto;">
 	    </div>
 		<h4 style="text-align: center; background-color:#eeeeee; color:000000">{{ title }}</h4>
 	    {% capture release_date %}{{page.release_date | date: '%s'}}{% endcapture -%}
-- 
GitLab