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 mb-1 text-mauve text-2xl">Webrings!</h2> 15 <p class="text-text text-lg mb-4"> 16 We're a big fan of old-school web discovery. Here's the 17 <a href="https://en.wikipedia.org/wiki/Webring" class="text-blue underline">webrings</a> 18 we're part of: 19 </p> 20 <ul> 21 {{ for ring of webrings.rings }} 22 {{ await comp.webring({"ring": ring}) }} 23 {{ /for }} 24 </ul> 25 26 <h2 class="mt-8 text-mauve text-2xl">About This Site</h2> 27 <p class="text-text text-lg">I've used the following to build this site:</p> 28 <ul> 29 {{ for tech of about.techs }} 30 {{ await comp.about.technology_item({"tech": tech}) }} 31 {{ /for }} 32 </ul> 33 </main> 34{{ /layout }}