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

single.html « projects « layouts - github.com/vickylaixy/hugo-theme-introduction.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 05bc6d6247b256fa63d1f1f5ee7b5e99bee3b137 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{{ define "main" }}
    <div class="container markdown top-pad">
        {{ if .Params.image }}
        <div class="has-text-centered">
          <img src="{{ .Params.image | relURL }}" class="img-responsive" alt="{{ .Title }}">
        </div>
        {{ end }}
        {{ .Content }}
    </div>
    <!-- End post content -->
    <div class="disqus">
        {{ template "_internal/disqus.html" . }}
    </div>
{{ end }}