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 content-center border-2 mt-4">Profile Picture</div>
6 <h2 class="text-2xl mt-4">Student, Sysadmin, and UX Crafter</h2>
7 <p class="text-lg mt-2">
8 Howdy! I play with computers, with an emphasis on accessible, secure, and enjoyable
9 experiences.
10 </p>
11 <!-- <div class="h-4"></div> -->
12 <h2 class="my-8 text-2xl">Recent blog posts:</h2>
13 <ul class="lg:w-3/4">
14 {{ for post of search.pages("category=blog", "date", 5) }}
15 {{ comp.post_card({"post": post, compact: true}) }}
16 {{ /for }}
17 </ul>
18 </main>
19{{ /layout }}