summaryrefslogtreecommitdiffstats
path: root/layouts/shortcodes/dropcap.html
blob: 80cbefe8fa106971eed9457bb7b04f93b02d14a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{{/*
	* The dropcap shortcode:
	*
	* Usage:
	*
	* {{< dropcap class="some class" >}}
	* your paragraph that will have a drop cap here
	* {{< /dropcap >}}
	*
	*/}}

<p class="has-dropcap {{ with .Get "class"}}{{.}}{{ end }}">
	{{ .InnerDeindent }}
</p>