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

13 lines
641 B
HTML
Raw Normal View History

2016-09-26 08:34:28 +02:00
<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>
2016-12-01 18:50:07 +01:00
{{ if .IsTranslated }}
<div class="tagline">
{{ range .Translations }}
<i class="fa fa-globe"></i><a href="{{ .Permalink }}">{{ .Lang }}</a>
{{ end }}
</div>
{{ end }}
2016-12-01 18:24:50 +01:00
</div><!--//profile-container-->