blob: e8674693931b4b39704eddbf4980a466a9d53eeb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{{- $href := print .Site.BaseURL "/" (partial "author-user.html" .) "/#" -}}
{{- $name := partial "author-name.html" . -}}
{{- $title := $name -}}
{{- with .Params.feed -}}
{{- $href = or $.Params.feed.home (print "http://" $.Params.feed.domain) -}}
{{- $name = $.Params.feed.name -}}
{{- $title = $name -}}
{{- end -}}
<micro-metadata-name title="{{ $title }}">
<b><a href="{{ $href }}">{{ $name }}</a></b>
{{- /* This comment removes trailing newlines and white spaces. */ -}}
</micro-metadata-name>
{{- /* This comment removes trailing newlines and white spaces. */ -}}
|