7 lines
267 B
HTML
7 lines
267 B
HTML
{{ $class := .class }}
|
|
{{ $content := .content }}
|
|
{{ $href := .href }}
|
|
{{ $style := .style }}
|
|
|
|
<a {{ with $class }} class="{{ . }}" {{ end }} {{ with $href }} href="{{ . | safeURL }}" {{ end }} {{ with $style }} style="{{ . | safeCSS }}" {{ end }}>{{ $content }}</a>
|