summaryrefslogtreecommitdiff
path: root/layouts/_default/single.html
blob: 97190e4d1c826626d275652c295966a5fa4217da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{{ define "main" }}
{{ with .Params.icon }}
<img src="{{ . }}" class="icon">
{{ 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 }}