summaryrefslogtreecommitdiff
path: root/layouts/_default/single.html
blob: 27f3c24c53ac67799d9e32da248e8400b7f810bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{{ define "main" }}
{{ with .Params.icon }}
<img src="{{ . }}" class="icon">
{{ end }}
{{ if .Params.deprecated }}
<br>
<blockquote class="deprecated">
	<p>I don't like this guide. I just leave it in case, avoid using it.</p>
</blockquote>
{{ 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 }}