1{{ layout "layouts/base.vto" }}
2 <main class="min-h-screen text-text justify-self-center w-full lg:w-1/2">
3 <h1 class="mt-8 text-5xl text-bold text-mauve">hi, I'm dish</h1>
4 {{# Profile picture goes here #}}
5 <div class="h-64 w-64 content-center text-center outline-2 mt-4">
6 there'll be a picture here in the future, promise!
7 </div>
8 <h2 class="text-2xl mt-4">Student, Sysadmin, and UX Crafter</h2>
9 <p class="text-lg mt-2">
10 Howdy! I play with computers, with an emphasis on accessible, secure, and enjoyable
11 experiences.
12 </p>
13 <!-- <div class="h-4"></div> -->
14 <h2 class="my-8 text-2xl">Recent blog posts:</h2>
15 <ul class="lg:w-3/4">
16 {{ for post of search.pages("category=blog", "date", 5) }}
17 {{ await comp.post_card({"post": post, compact: true}) }}
18 {{ /for }}
19 </ul>
20 </main>
21{{ /layout }}