This commit is contained in:
Michele Volpato 2022-10-15 22:50:45 +03:00 committed by GitHub
commit 2ac9e59a2a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 14 additions and 0 deletions

View file

@ -13,5 +13,9 @@
</div>
</header>
{{- .Content -}}
{{- if (.Param "comments") }}
{{- partial "comments.html" . }}
{{- end }}
</article>
{{ end }}

View file

@ -0,0 +1,3 @@
{{- /* Comments area start */ -}}
{{- /* to add comments read => https://gohugo.io/content-management/comments/ */ -}}
{{- /* Comments area end */ -}}

View file

@ -0,0 +1,4 @@
{{- /* Head custom content area start */ -}}
{{- /* Insert any custom code (web-analytics, resources, etc.) - it will appear in the <head></head> section of every page. */ -}}
{{- /* Can be overwritten by partial with the same name in the global layouts. */ -}}
{{- /* Head custom content area end */ -}}

View file

@ -29,4 +29,7 @@
<link rel="canonical" href="{{ .Permalink }}" />
<title>{{ .Title }}</title>
{{- partial "extend_head.html" . -}}
</head>