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 enable_toc != false }} 24 {{ if toc.length }} 25 {{ await comp.table_of_contents({"toc": toc}) }} 26 {{ else }} 27 <div class="mb-8"></div> 28 {{ /if }} 29 {{ /if }} 30 31 <div class="e-content text-lg"> 32 {{ content }} 33 </div> 34 </article> 35 {{ if footnotes.length }} 36 <section aria-label="Footnotes"> 37 {{ await comp.footnotes({"footnotes": footnotes }) }} 38 </section> 39 {{ /if }} 40 </main> 41{{ /layout }}