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

article_content.html « partials « layouts - github.com/coderzh/hugo-pacman-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7cf8544e5d308c2984d8db83d2d93843d8a5ba0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<div id="main" class="post" itemscope itemprop="blogPost">
	<article itemprop="articleBody">
    {{ partial "article_header.html" . }}
	<div class="article-content">
    {{ if isset .Params "toc"}}
		<div class="toc-article">
			<strong class="toc-title">{{ .Site.Params.Strings.TableOfContents }}</strong>
      {{ .TableOfContents }}
		</div>
    {{ end }}
    {{ .Content }}
    {{ if .Params.CreativeCommons }}
    <div class="creative-commons">
        <a rel="license"
           href="https://creativecommons.org/licenses/by-sa/4.0/"><img
           alt="知识共享许可协议" style="border-width:0"
           src="https://i.creativecommons.org/l/by-sa/4.0/88x31.png" />
        </a><br />
    </div>
    {{ end }}
	</div>
  {{ partial "article_footer.html" . }}
	</article>
  {{ partial "comment.html" . }}
</div>