1{{ layout "layouts/base.vto" }}
2 <main class="min-h-screen text-text justify-self-center w-full lg:w-1/2 h-card">
3 <h1 class="my-8 text-5xl text-bold text-mauve">
4 About
5 <span class="p-name p-nickname inline">
6 dish
7 </span>
8 </h1>
9
10 <div class="text-lg h-entry">
11 {{ content }}
12 </div>
13
14 <h2 class="mt-8 text-mauve text-2xl">About This Site</h2>
15 <p class="text-text text-lg">I've used the following to build this site:</p>
16 <ul>
17 {{ for tech of about.techs }}
18 {{ await comp.about.technology_item({"tech": tech}) }}
19 {{ /for }}
20 </ul>
21 </main>
22{{ /layout }}