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 6 <h2 class="mt-4 text-subtext0"> 7 Published on 8 <time class="dt-published" datetime="{{ published |> date }}"> 9 {{ published |> date('POST_DATE') }} 10 </time> 11 </h2> 12 13 <h2 class="hidden text-overlay1"> 14 By 15 <span class="inline p-author h-card">{{ author.name }}</span> 16 </h2> 17 18 <h2 class="text-overlay1"> 19 {{ readingInfo.words }} words, about {{ readingInfo.minutes }} 20 minute{{ if readingInfo.minutes != 1 }}s{{ /if }} 21 </h2> 22 23 {{ if toc.length }} 24 {{ await comp.table_of_contents({"toc": toc}) }} 25 {{ else }} 26 <div class="mb-8"></div> 27 {{ /if }} 28 29 <div class="e-content text-lg"> 30 {{ content }} 31 </div> 32 </article> 33 {{ if footnotes.length }} 34 <section aria-label="Footnotes"> 35 {{ await comp.footnotes({"footnotes": footnotes }) }} 36 </section> 37 {{ /if }} 38 </main> 39{{ /layout }}