summaryrefslogtreecommitdiff
path: root/layouts/_default/single.html
blob: b68da6cabf72156136a5e367935f73b3033836cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{{ define "main" }}

{{/* Intro */}}

<div class="single-intro-container">

  {{/* Title and Summary */}}

  <h1 class="single-title">{{ .Title }}</h1>
  {{if .Param "summary" }}
  <p class="single-summary">{{ .Summary }}</p>
  {{ end }}

  {{/* Reading Time */}}

  <p class="single-readtime">
    {{if .Date }}
    {{ $dateMachine := .Date | time.Format "2006-01-02T15:04:05-07:00" }}
    {{ $dateHuman := .Date | time.Format ":date_long" }}
    <time datetime="{{ $dateMachine }}">{{ $dateHuman }}</time>
    -
    {{end}}
    {{if (.Param "readTime")}}
    {{.ReadingTime}} min
    {{end }}
  </p>

</div>

{{/* Table of Content */}}

{{if .Param "toc" }}
<aside class="toc">
  <p><strong>Table of contents</strong></p>
  {{ .TableOfContents }}
</aside>
{{ end }}

{{/* Actual document content */}}

<div class="single-content">
  {{ .Content }}
</div>

{{ end }}