Files
vac.dev/_layouts/media.html
2022-06-06 12:53:57 +02:00

23 lines
1.0 KiB
HTML

---
layout: default
---
<section class="media container max-w-screen-xl flex flex-col items-center pt-10 pb-8 lg:py-10">
<div class="info-block w-full sm:w-10/12 lg:w-9/12">
<h1 class="text-xl md:text-xxl mb-5 lg:mb-16 sm:max-w-md lg:max-w-xl">Media</h1>
<div class="media__cards container mx-auto lg:mx-0 flex flex-col flex-wrap sm:flex-row sl:justify-between">
{% for mediapost in site.data.media %}
<div class="media__card flex flex-col w-full sl:max-w-48 mb-5 sm:mb-0 group">
<a href="{{ mediapost.link }}" target="_blank" rel="noopener noreferrer">
<img src="{{ mediapost.image }}" class="w-full mb-2 group-hover:opacity-75" alt="Media preview image" />
<li class="flex flex-col w-full mb-5 lg:mb-8">
<time class="text-xxs opacity-75">{{ mediapost.date | date: '%B %d, %Y' }}</time>
<p class="text-xs lg:text-base font-semibold group-hover:underline">{{ mediapost.title }}</p>
</li>
</a>
</div>
{% endfor %}
</div>
</div>
</section>