semantic-indieweb/layouts/partials/identity.html

16 lines
670 B
HTML

{{- range .Site.Params.Identity -}}
{{- $relMe := cond .authn "me authn" "me" -}}
{{- if (eq .type "Email") }}
<link rel="{{ $relMe }}" href="mailto:{{ .value }}">
{{- else if (eq .type "GitHub") }}
<link rel="{{ $relMe }}" href="https://github.com/{{ .value }}">
{{- else if (eq .type "GitLab") }}
<link rel="{{ $relMe }}" href="https://gitlab.com/{{ .value }}">
{{- else if (eq .type "Twitter") }}
<link rel="{{ $relMe }}" href="https://twitter.com/{{ .value }}">
{{- else if (eq .type "MicroBlog") }}
<link rel="{{ $relMe }}" href="https://micro.blog/{{ .value }}">
{{- else if (eq .type "PGP") }}
<link rel="pgpkey authn" href="{{ .value }}">
{{- end -}}
{{- end -}}