blog/src/index.html

33 lines
922 B
HTML
Raw Normal View History

2024-05-22 22:17:41 -07:00
---
2024-05-24 02:29:14 -07:00
desc: "a blog about computers, math, hacks, games, and life"
2024-05-22 22:17:41 -07:00
image: "./images/robert-pearce-UwHN0jU_YqQ-unsplash-800w.jpg"
lang: "en"
stylesheet: "default"
title: "Hello, world!"
---
<main>
<section>
2024-05-24 02:29:14 -07:00
<h2 class="text-3xl">Latest</h2>
<hr class="sm:mr-2 max-w-sm border-0 h-0.5 bg-gray-500 rounded-md mt-2" />
<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$"
class="w-fit group-hover:text-gray-400 transition-colors"
>
<h3 class="text-2xl">$title$</h3>
<p class="text-sm">$date$</p>
</a>
</div>
<hr
class="max-w-[200px] border-0 h-1 bg-gray-800 rounded-lg px-2 group-hover:max-w-[250px] group-hover:bg-violet-950 transition-all duration-400"
/>
</li>
2024-05-22 22:17:41 -07:00
$endfor$
</ul>
</section>
</main>