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

single.html « _default « layouts - github.com/gonnux/hugo-apps-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 484e731c33754e62e8f13a11c2c4910dcc9f9d30 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{{ define "main" }}
  <div class="apps-content">
    {{- .Content -}}
    {{- if not (eq .Site.DisqusShortname "") -}}
      {{- if isset .Params "enableDisqus" -}}
        {{- if .Params.enableDisqus -}}
          {{- template "_internal/disqus.html" . -}}
        {{- end -}}
      {{- else -}}
        {{- if not .Params.full -}}
          {{- template "_internal/disqus.html" . -}}
        {{- end -}}
      {{- end -}}
    {{- end -}}
  </div>
{{ end }}