Welcome to mirror list, hosted at ThFree Co, Russian Federation.

h-card.html « partials « layouts - github.com/Mitrichius/hugo-theme-anubis.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 66cf4797d5d508b182a2ef88f95131ac886694fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<p class="h-card vcard">

    <a href={{ .Site.BaseURL }} class="p-name u-url url fn" rel="me">{{ .Site.Params.author }}</a> 

    {{ if .Site.Params.email }} 
        /
        <a class="p-email u-email email" rel="me" href="mailto:{{ .Site.Params.email }}">{{ .Site.Params.email }}</a>
    {{ end }}

    {{ if .Site.Params.avatar }} 
        <img class="u-photo" src="{{ .Site.Params.avatar }}" />
    {{ end }}
</p>