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="text-5xl my-8">Blog</h1>
4 <a class="lg:inline float-right -mt-20 mr-1.5" href="/blog.rss" aria-label="Blog RSS Feed">
5 <i class="text-5xl si si-rss"></i>
6 </a>
7 <ul class="mt-8">
8 {{ for post of search.pages("category=blog") }}
9 {{ comp.post_card({"post": post}) }}
10 {{ /for }}
11 </ul>
12 </main>
13{{ /layout }}