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="my-8 text-5xl text-bold text-mauve">Projects</h1> 4 <p class="mb-4">Click any card to be taken to the project's git repo!</p> 5 <ul class="space-y-4"> 6 {{ for project of projects.projects }} 7 {{ comp.project_card({"project": project}) }} 8 {{ /for }} 9 </ul> 10 </main> 11{{ /layout }}