You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hugo-theme-mini/layouts/partials/profile.html

15 lines
456 B
HTML

<header class="profile">
{{ if .Site.Params.avatarLink }}
<a href="{{ .Site.Params.avatarLink }}">
<img class="avatar" alt="avatar" src="{{ "/images/avatar.png" | relURL }}" />
</a>
{{ else }}
<img class="avatar" alt="avatar" src="{{ "/images/avatar.png" | relURL }}" />
{{ end }}
<h1>{{ .Site.Title }}</h1>
{{ with .Site.Params.Bio }}
<h2>{{ . | markdownify }}</h2>
{{ end }}
</header>