summaryrefslogtreecommitdiffstats
path: root/layouts/shortcodes/link.html
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/shortcodes/link.html')
-rw-r--r--layouts/shortcodes/link.html9
1 files changed, 8 insertions, 1 deletions
diff --git a/layouts/shortcodes/link.html b/layouts/shortcodes/link.html
index b6993ec..3778d83 100644
--- a/layouts/shortcodes/link.html
+++ b/layouts/shortcodes/link.html
@@ -1 +1,8 @@
-<a href="{{ .Get "src" | absURL }}" {{- with .Get "title" }} title="{{.}}"{{ end }} {{- with .Get "class" }} class="{{.}}"{{ end }} {{- with .Get "target" }} target="{{.}}"{{ end }} {{- with .Get "rel" }} rel="{{.}}"{{ end }}>{{ .Inner }}</a>
+<a href="{{ .Get "src" | absURL }}"
+ {{- with .Get "hreflang" }} hreflang="{{ . }}"{{ end }}
+ {{- with .Get "title" }} title="{{ . }}"{{ end }}
+ {{- with .Get "class" }} class="{{ . }}"{{ end }}
+ {{- with .Get "target" }} target="{{ . }}"{{ end }}
+ {{- with .Get "rel" }} rel="{{ . }}"{{ end }}>
+ {{- .Inner -}}
+</a>