summaryrefslogtreecommitdiff
path: root/layouts/_default/single.html
blob: 3bc97a2a1699e457ba1cdb0faa78bb0dc2368c5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{{ define "main" }}
{{ with .Params.icon }}
<img style="height: 10em;display: block;margin: auto;" src="{{ . }}">
{{ end }}
{{ if .Params.table }}
<h2>Table of Contents</h2>
{{.TableOfContents}}
{{ end }}
{{- .Content }}
{{ with .Params.copied }}
<p style="text-align: right;">
	<small>
		<i>This article is copied from <a href="{{ index . 1 }}">{{ index . 0}}</a></i>
	</small>
</p>
{{ end }}
{{ end }}