mirror of
https://github.com/safing/web
synced 2025-09-02 02:59:03 +00:00
Add podcast number overlap
This commit is contained in:
parent
bff7ab749b
commit
4077a8cf43
2 changed files with 16 additions and 5 deletions
|
@ -140,7 +140,10 @@ title: Safing
|
||||||
<li class="mt-10 md:mt-0">
|
<li class="mt-10 md:mt-0">
|
||||||
<div class="block transform hover:scale-95 duration-150 ease-in-out">
|
<div class="block transform hover:scale-95 duration-150 ease-in-out">
|
||||||
<a href="/podcast/2020/05/11/the-risks-of-paying-with-cash/">
|
<a href="/podcast/2020/05/11/the-risks-of-paying-with-cash/">
|
||||||
<img src="/assets/img/thumbnails/podcast/pod-21.png" alt="">
|
<div class="relative" style="max-width: 365px;">
|
||||||
|
<img src="/assets/img/thumbnails/podcast/pod-21.png" alt="">
|
||||||
|
<span class="absolute text-white right-0 bottom-0 pr-3 pb-3" style="font-size: 3.1rem; font-weight: 800;" >#21</span>
|
||||||
|
</div>
|
||||||
<span style="font-size: 12rem; font-weight: 800; margin-top: -13.8rem; margin-left: -0.8rem;" class=" z-0 absolute bg-top">
|
<span style="font-size: 12rem; font-weight: 800; margin-top: -13.8rem; margin-left: -0.8rem;" class=" z-0 absolute bg-top">
|
||||||
<button type="button" style="background-color: #6188ff;" class="inline-flex items-center px-3 py-3 rounded-md border border-transparent text-xs leading-5 font-extrabold text-white">
|
<button type="button" style="background-color: #6188ff;" class="inline-flex items-center px-3 py-3 rounded-md border border-transparent text-xs leading-5 font-extrabold text-white">
|
||||||
<!-- <svg class="h-8 w-auto lg:h-5 fill-current text-white" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9.41 11">
|
<!-- <svg class="h-8 w-auto lg:h-5 fill-current text-white" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9.41 11">
|
||||||
|
|
|
@ -28,15 +28,23 @@ layout: page
|
||||||
<li class="mt-10 md:mt-0">
|
<li class="mt-10 md:mt-0">
|
||||||
<div class="block transform hover:scale-95 duration-150 ease-in-out">
|
<div class="block transform hover:scale-95 duration-150 ease-in-out">
|
||||||
<a href="{{ episode.url }}">
|
<a href="{{ episode.url }}">
|
||||||
{% if episode.custom_thumbnail_name == null %}
|
<div class="relative" style="max-width: 365px;">
|
||||||
|
{% if episode.custom_thumbnail_name == null %}
|
||||||
<img src="{{ site.img_url }}thumbnails/podcast/placeholder.png">
|
<img src="{{ site.img_url }}thumbnails/podcast/placeholder.png">
|
||||||
{% else %}
|
{% else %}
|
||||||
<img src="{{ site.img_url }}thumbnails/podcast/{{ episode.custom_thumbnail_name }}.png">
|
<img src="{{ site.img_url }}thumbnails/podcast/{{ episode.custom_thumbnail_name }}.png">
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
<span class="absolute text-white right-0 bottom-0 pr-3 pb-3" style="font-size: 3.1rem; font-weight: 800;" >#{{ episode.title | slice: 2, 2 }}</span>
|
||||||
|
</div>
|
||||||
<span style="font-size: 12rem; font-weight: 800; margin-top: -13.8rem; margin-left: -0.8rem;" class=" z-0 absolute bg-top">
|
<span style="font-size: 12rem; font-weight: 800; margin-top: -13.8rem; margin-left: -0.8rem;" class=" z-0 absolute bg-top">
|
||||||
<button type="button" style="background-color: #6188ff;" class="inline-flex items-center px-4 py-4 rounded-md border border-transparent text-xs leading-5 font-extrabold text-white">
|
<button type="button" style="background-color: #6188ff;" class="inline-flex items-center px-3 py-3 rounded-md border border-transparent text-xs leading-5 font-extrabold text-white">
|
||||||
<svg class="h-8 w-auto lg:h-5 fill-current text-white" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9.41 11">
|
<svg class="h-8 w-auto lg:h-7" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
||||||
<path d="M8.43 4.62l-6.34-4A1 1 0 00.5 1.5v8a1 1 0 001.59.88l6.34-4a1 1 0 000-1.76z" stroke-miterlimit="10" /></svg>
|
<g fill="none">
|
||||||
|
<path d="M0 0h24v24H0z"/>
|
||||||
|
<path stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.8" d="M12 15v0c-1.657 0-3-1.343-3-3V6c0-1.657 1.343-3 3-3v0c1.657 0 3 1.343 3 3v6c0 1.657-1.343 3-3 3z"/>
|
||||||
|
<path stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.8" d="M18 10v2c0 3.314-2.686 6-6 6v0c-3.314 0-6-2.686-6-6v-2M12 18v3M7.82 21h8.36"/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
</button>
|
</button>
|
||||||
</span>
|
</span>
|
||||||
<div class="pt-6">
|
<div class="pt-6">
|
||||||
|
|
Loading…
Add table
Reference in a new issue