blog/src/index.html

35 lines
1 KiB
HTML
Raw Normal View History

2024-05-22 22:17:41 -07:00
---
2024-05-24 22:56:18 -07:00
desc: "writing about computers, math, hacks, games, and life"
image: "./images/gradient-ascent.jpg"
2024-05-22 22:17:41 -07:00
lang: "en"
stylesheet: "default"
2024-05-24 21:55:11 -07:00
title: "blog | youwen wu"
2024-05-22 22:17:41 -07:00
---
<main>
<section>
2024-05-24 02:29:14 -07:00
<h2 class="text-3xl">Latest</h2>
2024-05-24 21:55:11 -07:00
<hr
class="sm:mr-2 max-w-sm border-0 h-0.5 dark:bg-muted-dark bg-muted-light rounded-md mt-2"
/>
2024-05-24 02:29:14 -07:00
<ul class="mt-6 space-y-4 md:space-y-8">
2024-05-22 22:17:41 -07:00
$for(posts)$
2024-05-24 02:29:14 -07:00
<li class="group">
<div class="rounded-md p-2">
<a
href=".$url$"
2024-05-24 21:55:11 -07:00
class="w-fit dark:group-hover:text-muted-dark group-hover:text-muted-light transition-colors"
2024-05-24 02:29:14 -07:00
>
<h3 class="text-2xl">$title$</h3>
<p class="text-sm">$date$</p>
</a>
</div>
<hr
2024-05-24 21:55:11 -07:00
class="max-w-[200px] border-0 h-1 dark:bg-accent-dark bg-accent-light rounded-lg px-2 group-hover:max-w-[250px] dark:group-hover:bg-secondary-dark group-hover:bg-secondary-light transition-all duration-400"
2024-05-24 02:29:14 -07:00
/>
</li>
2024-05-22 22:17:41 -07:00
$endfor$
</ul>
</section>
</main>