website/layouts/shortcodes/link.html

5 lines
239 B
HTML

{{- $text := .Get "text" -}}
{{- $url := .Get "url" -}}
{{- $target := .Get "target" | default "_blank" -}}
{{- $class := .Get "class" -}}
<a href="{{ $url }}" target="{{ $target }}"{{ with $class }}class="{{ . }}"{{ end }}>{{ $text }}</a>