1
0
Fork 0
mirror of https://github.com/safing/web synced 2025-04-25 13:19:08 +00:00
safing-web/podcast/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.9 KiB
HTML

---
title: The Safing Podcast
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">Podcast</h2>
<div class="flex mx-auto justify-center pt-5">
<a href="{{ site.podcast_itunes_url }}" class="opacity-55 hover:opacity-100 ease-in-out duration-150" target="_blank">
<img style="height: 1.3rem; width: auto;" src="{{ site.img_url }}icons/podcast.svg">
</a>
<a href="{{ site.podcast_feed_url }}" class="pl-4 pr-4 opacity-55 hover:opacity-100 ease-in-out duration-150" target="_blank">
<img style="height: 1.3rem; width: auto;" src="{{ site.img_url }}icons/rss.svg">
</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_podcasts = site.publications | reverse | where:"category","podcast" %}
{% for episode in sorted_podcasts %}
{% include thumbnail_podcast.html %}
{% endfor %}
</ul>
<br class="mb-12">
</div>
</div>
</div>
</div>
</div>
</div>
</section>