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: e8563043332905bb88608a711b03457cabb0bb70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<div id="main" class="post" itemscope itemprop="blogPost">
	<article itemprop="articleBody">
    {{ partial "article_header.html" . }}
	<div class="article-content">
    {{ partial "article_gallery.html" . }}
    {{ if isset .Params "toc"}}
		<div class="toc-article">
			<strong class="toc-title">{{ .Site.Params.Strings.TableOfContents }}</strong>
      {{ .TableOfContents }}
		</div>
    {{ end }}
    {{ .Content }}
	</div>
  {{ partial "article_footer.html" . }}
	</article>
  {{ partial "comment.html" . }}
</div>