mirror of
https://github.com/dillonzq/LoveIt.git
synced 2024-11-15 11:33:20 +01:00
15 lines
No EOL
1.1 KiB
HTML
15 lines
No EOL
1.1 KiB
HTML
{{- $rel := .Rel -}}
|
|
{{- $nick := .Nickname -}}
|
|
{{- $text := .Text -}}
|
|
{{- $n := .Nickname | default .Name | default .Email | default .URL | default "👀" -}}
|
|
<span class="h-card{{ with .Class }} {{ . }}{{- end -}}">
|
|
{{- with .URL -}}<a href="{{ . }}" class="u-url url"{{ with $rel }} rel="{{ . }}"{{- end -}}{{ with $text }} title="{{ . }}"{{ end }}>{{- else -}}{{- with .Email -}}<a href="mailto:{{ . }}" class="email"{{ with $text }} title="{{ . }}"{{ end }}>{{- end -}}{{- end -}}
|
|
{{- with .Image -}}<img class="u-photo photo" src="{{ . }}" alt="{{ $n }}">{{- else -}}<i class="far fa-user-circle" aria-hidden="true"></i>{{ end -}} 
|
|
{{- with .Name -}}<span class="p-name fn">{{ . }}</span>{{ with $nick }} ({{- end -}}{{- end -}}
|
|
{{- with .Nickname -}}<span class="p-nickname nickname">{{ . }}</span>{{- end -}}
|
|
{{- with .Name -}}{{ with $nick }}){{- end -}}{{- end -}}
|
|
{{- with .URL -}}</a>{{- else -}}{{- with .Email -}}</a>{{- end -}}{{- end -}}
|
|
{{- with .Email }}
|
|
<a href="mailto:{{ . }}" class="email"><span class="u-email">{{ . }}</span></a>
|
|
{{- end -}}
|
|
</span> |