1{{ layout "layouts/base.vto" }} 2 <main class="min-h-screen text-text justify-self-center w-full lg:w-1/2"> 3 <article class="h-entry"> 4 <h1 class="text-5xl font-serif mt-8 p-name">{{ title }}</h1> 5 <h2 class="text-2xl font-sans mt-4 text-subtext0"> 6 Published on 7 <time class="dt-published" datetime="{{ published |> date }}"> 8 {{ published |> date('POST_DATE') }} 9 </time> 10 </h2> 11 <h2 class="text-2xl font-sans mb-8 text-overlay1"> 12 By 13 <span class="inline p-author">{{ author.name }}</span> 14 </h2> 15 16 <div class="e-content text-lg"> 17 {{ content }} 18 </div> 19 </article> 20 </main> 21{{ /layout }}