single.html

Source code

HTML output

{{- define "top-bar" -}}
  {{- partial "navigation/topbar/main.html" . -}}
{{- end -}}

{{- define "sidebar-left" -}}
  {{- partial "navigation/sidebar-left.html" . -}}
{{- end -}}

{{- define "breadcrumbs" -}}
  <div class="my-4">
      {{partial "navigation/breadcrumbs.html" . }}
  </div>
{{- end -}}

{{ define "content" }}
  <h1 class="text-black p-4">{{ .Title }}</h1>
  <div id="articleContent" class="p-4">
    {{ .Content }}
  </div>
{{ end }}

{{ define "innerFooter" }}
  <div class="p-4">
    {{partial "article/next-prev.html" . }}
  </div>
{{ end }}

{{- define "sidebar-right" -}}
  {{- partial "navigation/sidebar-right.html" . -}}
{{- end -}}

JSON output

{{- partial "json.json" .}}