LoveIt/layouts/partials/plugin/social.html
Dillon c2197b7411
feat(social): improve social links (#254)
* replace forkawesome and iconfont with simple icons
* add more configs for social
2020-04-24 19:04:37 +08:00

11 lines
388 B
HTML

{{- $href := "" -}}
{{- with .url -}}
{{- $href = . | relLangURL -}}
{{- else -}}
{{- $template := .template | default "%s" -}}
{{- with .prefix -}}
{{- $template = . | strings.TrimSuffix "/" | printf "%s/%%s" -}}
{{- end -}}
{{- $href = printf (string $template) .id -}}
{{- end -}}
{{- dict "href" $href "rel" "me" | merge . | partial "plugin/link.html" -}}