1
0
Fork 0
mirror of https://github.com/safing/web synced 2025-04-25 13:19:08 +00:00
safing-web/video/index.html
davegson 1c07bfb54a Rename medias to publications
makes more sense as a name
2021-03-25 18:21:36 +01:00

39 lines
1.8 KiB
HTML

---
title: Safing Video Updates
layout: page
---
<section class="pt-16 md:pt-32 lg:pt-64">
<div class="items-center h-full">
<div class="container mx-auto px-8 sm:px-0 flex">
<div class="max-w-screen-xl mx-auto px-4 sm:px-6 lg:flex">
<div class="py-12 bg-white">
<div class="max-w-screen-xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="lg:text-center">
<!-- hide the huge "Follow Us" in mobile & md devices for now, made width problems -->
<span style="font-size: 12rem; font-weight: 800; margin-top: -9rem; opacity: 0.05;" class="z-0 ml-0 w-full left-0 text-center absolute bg-top hidden lg:block">Follow Us</span>
<h2 class="text-5xl tracking-tight font-extrabold leading-none py-5 md:py-10 text-center">Video Updates</h2>
<div class="flex mx-auto justify-center pt-5">
<a href="{{ site.youtube_channel_url }}" class="opacity-55 hover:opacity-100 ease-in-out duration-150" target="_blank">
YouTube
</a>
<a href="{{ site.invidious_channel_url }}" class="pl-4 pr-4 opacity-55 hover:opacity-100 ease-in-out duration-150" target="_blank">
Invidious
</a>
</div>
</div>
<div class="mt-8 md:mt-16 lg:mt-32">
<ul class="md:grid md:grid-cols-2 lg:grid-cols-3 md:col-gap-8 md:row-gap-10">
{% assign sorted_videos = site.publications | reverse | where:"category","video" %}
{% for video in sorted_videos %}
{% include thumbnail_video.html %}
{% endfor %}
</ul>
<br class="mb-12">
</div>
</div>
</div>
</div>
</div>
</div>
</section>