Welcome to mirror list, hosted at ThFree Co, Russian Federation.

single.html « _default « layouts - github.com/mattbutton/silhouette-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 889cd263068064b10c3e3f44ef84b0d8c962c826 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{{ define "head" }}

{{ end }}
{{ define "title" }}
  {{ .Title }} | {{ .Site.Title }}
{{ end }}
{{ define "main" }}
<article class="container mt-4 post">
    <h1>{{ .Title }}</h1>
    
    {{ .Content }}
</article>
{{ partial "sidebar" . }}
{{ end }}