single.html (1921B)
1 {{ define "title" }} 2 {{ .Title }} ยท {{ .Site.Title }} 3 {{ end }} 4 {{ define "content" }} 5 <section class="container post"> 6 <article> 7 <header> 8 <div class="post-title"> 9 <h1 class="title"> 10 <a class="title-link" href="{{ .Permalink | safeURL }}"> 11 {{ .Title }} 12 </a> 13 </h1> 14 </div> 15 <div class="post-meta"> 16 <div class="date"> 17 <span class="posted-on"> 18 <i class="fa-solid fa-calendar" aria-hidden="true"></i> 19 <time datetime="{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}"> 20 {{ .Date | time.Format (.Site.Params.dateFormat | default "January 2, 2006" ) }} 21 </time> 22 </span> 23 <span class="reading-time"> 24 <i class="fa-solid fa-clock" aria-hidden="true"></i> 25 {{ i18n "reading_time" .ReadingTime }} 26 </span> 27 </div> 28 {{ with .GetTerms "authors" }}{{ partial "taxonomy/authors.html" . }}{{ end }} 29 {{ with .GetTerms "categories" }}{{ partial "taxonomy/categories.html" . }}{{ end }} 30 {{ with .GetTerms "tags" }}{{ partial "taxonomy/tags.html" . }}{{ end }} 31 </div> 32 </header> 33 34 <div class="post-content"> 35 {{ if .Params.featuredImage }} 36 <img src="{{ .Params.featuredImage | relURL }}" alt="Featured image"/> 37 {{ end }} 38 {{ .Content }} 39 </div> 40 41 42 <footer> 43 {{ partial "posts/series.html" . }} 44 {{ partial "posts/disqus.html" . }} 45 {{ partial "posts/commento.html" . }} 46 {{ partial "posts/utterances.html" . }} 47 {{ partial "posts/giscus.html" . }} 48 {{ partial "posts/mastodon.html" . }} 49 {{ partial "posts/telegram.html" . }} 50 {{ partial "posts/cusdis.html" . }} 51 </footer> 52 </article> 53 54 {{ partial "posts/math.html" . }} 55 </section> 56 {{ end }}