single.html (1983B)
1 {{ define "main" }} 2 <section itemscope itemtype="http://schema.org/BlogPosting"> 3 <div class="container"> 4 5 <header class="post-header heading"> 6 <h1>{{ .Title }}</h1> 7 {{ with .Description }} 8 <h3>{{ . }}</h3> 9 {{ end }} 10 <h5 class="post-meta"> 11 <!-- TODO fix author --> 12 <span itemprop="author" itemscope itemtype="http://schema.org/Person"> 13 <span itemprop="name">{{ .Site.Author.Name }}</span> 14 </span> 15 {{ if eq .Section "posts" }} 16 <time datetime="{{ .Date }}" itemprop="datePublished"> 17 <i class="far fa-calendar"></i> {{ .Date.Format "Jan 2, 2006" }} 18 </time> 19 <i class="far fa-clock"></i> {{ .ReadingTime }} mins 20 {{ end }} 21 </h5> 22 </header> 23 24 <div class="post-content" itemprop="articleBody"> 25 {{ .Content }} 26 </div> 27 28 {{ if eq .Section "posts" }} 29 <h5 class="pt-4" style="text-transform: none;"> 30 <span itemprop="author" itemscope itemtype="http://schema.org/Person"> 31 <span itemprop="name">Ed van Bruggen</span> 32 </span> 33 </h5> 34 {{ end }} 35 36 <div class="row text-center justify-content-between pt-4"> 37 <div class="col-md-4"> 38 {{ with .PrevInSection }} 39 <span class="block text-inc text-bold">Previous:</span> 40 <a class="btn btn-block text-med" href="{{ .Permalink }}"> 41 <i class="fa fa-arrow-left mr-1"></i> 42 {{ .Title | title }} 43 </a> 44 {{ end }} 45 </div> 46 <div class="col-md-4"> 47 {{ with .NextInSection }} 48 <span class="block text-inc text-bold">Next:</span> 49 <a class="btn btn-block text-med" href="{{ .Permalink }}"> 50 {{ .Title | title }} 51 <i class="fa fa-arrow-right ml-1"></i> 52 </a> 53 {{ end }} 54 </div> 55 </div> 56 57 </div> 58 </section> 59 {{ end }}