1
1
Fork 0

Compare commits

...

2 commits

Author SHA1 Message Date
Ava Gaiety W
095233cf77 replaced TEST copy on blog screen 2025-04-24 11:42:31 -06:00
Ava Gaiety W
6a1707f613 fixed line clamping on homescreen 2025-04-24 11:42:17 -06:00
2 changed files with 6 additions and 4 deletions

View file

@ -22,10 +22,12 @@
<a href="{{ content.url }}" class="motion-safe:transition-colors bg-mauve block mt-4 outline-link shadow border-l-2 border-yellow hover:border-blue hover:scale-[1.02] hover:shadow-lg active:shadow active:scale-[1.01] active:border-blue rounded"> <a href="{{ content.url }}" class="motion-safe:transition-colors bg-mauve block mt-4 outline-link shadow border-l-2 border-yellow hover:border-blue hover:scale-[1.02] hover:shadow-lg active:shadow active:scale-[1.01] active:border-blue rounded">
<div class="rounded-tl rounded-tr h-16 w-full bg-center bg-105% opacity-50 saturate-0 contrast-50 overflow-hidden" style="background-image: url('{{ content.data.image }}')"> <div class="rounded-tl rounded-tr h-16 w-full bg-center bg-105% opacity-50 saturate-0 contrast-50 overflow-hidden" style="background-image: url('{{ content.data.image }}')">
</div> </div>
<h3 class="bg-mauve h-20 pt-3 px-3 text-xl text-base"> <h3 class="bg-mauve h-20 p-3 text-xl text-base">
<span class="line-clamp-2" title="{{ content.data.title }}">
{{ content.data.title }} {{ content.data.title }}
</span>
</h3> </h3>
<div class="py-2 px-3 h-24 rounded-bl rounded-br text-text bg-crust"> <div class="py-2 px-3 h-24 rounded-bl rounded-br text-text bg-crust line-clamp-3" title="{{ content.data.description }}">
{{ content.data.description | markdown | safe }} {{ content.data.description | markdown | safe }}
</div> </div>
</a> </a>

View file

@ -1,7 +1,7 @@
--- ---
layout: blog-list.njk layout: blog-list.njk
description: description:
TEST Various writings on code, design, art and life.
eleventyExcludeFromCollections: true eleventyExcludeFromCollections: true
--- ---