blog/src/index.html

40 lines
1.2 KiB
HTML
Raw Normal View History

2024-05-22 22:17:41 -07:00
---
2024-06-13 21:03:12 -07:00
desc: "a weblog about computers, math, hacks, games, and life"
2024-05-24 22:56:18 -07:00
image: "./images/gradient-ascent.jpg"
2024-05-22 22:17:41 -07:00
lang: "en"
stylesheet: "default"
2024-06-13 21:03:12 -07:00
title: "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>
2024-05-25 01:44:00 -07:00
<p
class="italic text-accent-light dark:text-accent-dark my-1 group-hover:dark:text-muted-dark group-hover:text-muted-light transition-colors"
>
$desc$
</p>
2024-05-24 02:29:14 -07:00
<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>