36 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			HTML
		
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			HTML
		
	
	
| <!-- Rel=Me Identity Links -->
 | |
| {{- 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") }}
 | |
| {{- $relPgp := cond .authn "pgpkey authn" "pgpkey" }}
 | |
| <link rel="{{ $relPgp }}" href="{{ .value }}">
 | |
| {{- end -}}
 | |
| {{- end -}}
 | |
| <!-- Webmention Links -->
 | |
| {{- with .Site.Params.Webmention }}
 | |
| <link rel="webmention" href="{{ . }}">
 | |
| {{- end }}
 | |
| {{- with .Site.Params.Pingback }}
 | |
| <link rel="pingback" href="{{ . }}">
 | |
| {{- end -}}
 | |
| <!-- IndieAuth Endpoints -->
 | |
| {{- with .Site.Params.IndieAuth.Authorization }}
 | |
| <link rel="authorization_endpoint" href="{{ . }}">
 | |
| {{- end }}
 | |
| {{- with .Site.Params.IndieAuth.Token }}
 | |
| <link rel="token_endpoint" href="{{ . }}">
 | |
| {{- end -}}
 | |
| <!-- Micropub Endpoint -->
 | |
| {{- with .Site.Params.Micropub }}
 | |
| <link rel="micropub" href="{{ . }}">
 | |
| {{- end }} |