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