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: 78241e419791377b2262db2d5d174eb6f2feec8a (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 "enable_disqus" -}}
        {{- if .Params.enable_disqus -}}
          {{- template "_internal/disqus.html" . -}}
        {{- end -}}
      {{- else -}}
        {{- if not .Params.full -}}
          {{- template "_internal/disqus.html" . -}}
        {{- end -}}
      {{- end -}}
    {{- end -}}
  </div>
{{ end }}