This repository was archived by the owner on Nov 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvideos-clips.html
45 lines (42 loc) · 1.52 KB
/
videos-clips.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
---
layout: page
title: All Techlore clips
permalink: /videos/all-techlore-clips
sitemap: false
description: "Watch and share these short clips from our video series, packed with handy tips and insights on digital rights and privacy."
---
{% include variables.html %}
{% include c_sub-hero.html title=page.title perex=page.description %}
<section>
<div class="container">
{%- if site.clips.size > 0 -%}
<div class="box has-footer">
<ul class="video-list marginless is-flex is-flex-direction-column is-gap-2 listless">
{% assign sortedVideos = site.clips | sort: "datePublished" | reverse %}
{% for video in sortedVideos limit: site.archive.itemsToShow %}
{% assign filename = video.path | split: "/" | last %}
{% assign videoThumbnail = "/clips/" | append: filename | replace: ".md", ".jpg" | relative_url %}
{%- include c_video.html
title=video.title
desc=video.description
link=video.linkForum
linkYouTube=video.linkYouTube
linkPeerTube=video.linkPeerTube
linkOdysee=video.linkOdysee
thumbnail=videoThumbnail
date=video.datePublished
tags=video.tags
isDetailed=true
-%}
{% endfor %}
</ul>
</div>
{% include c_box-footer.html
link=site.data._en.navigation.mainNav.videos.url
title=site.data._en.content.global.back.backToVideos
link2=site.data._en.navigation.hiddenNav.archivedTechloreClips.url
title2=site.data._en.navigation.hiddenNav.archivedTechloreClips.title
%}
{%- endif -%}
</div>
</section>