hugo-orbit-theme/layouts/partials/profile.html

13 lines
646 B
HTML

<div class="profile-container">
<img class="profile" src="{{ .Site.BaseURL }}assets/images/{{ .Site.Params.profile.avatar }}" alt="" />
<h1 class="name">{{ .Site.Params.profile.name }}</h1>
<h3 class="tagline">{{ .Site.Params.profile.tagline }}</h3><br/>
{{ if .IsTranslated }}
<div class="tagline">
{{ range .Translations }}
<i class="fa fa-globe"></i><a href="{{ .Permalink }}">{{ .Lang }}</a>
{{ end }}
</div>
{{ end }}
</div><!--//profile-container-->