summaryrefslogtreecommitdiff
path: root/layouts/guide/single.html
blob: ededf1daa2e5ec58c1edc927e32b5943891426e9 (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="/guide/icon/{{ . }}" class="icon">
{{ end }}
{{ if .Params.deprecated }}
<br>
<blockquote class="deprecated">
	<p>This page is deprecated.</p>
	{{ if .Params.deprecatedDescription }}
	<p>{{ .Params.deprecatedDescription }}</p>
	{{ end }}
</blockquote>
{{ end }}
<h2>Table of Contents</h2>
{{ .TableOfContents }}
{{- .Content }}
{{ end }}