LoveIt/layouts/partials/home/profile.html

39 lines
1.5 KiB
HTML
Raw Normal View History

2020-02-13 18:30:33 +01:00
<div class="home-profile">
{{- $avatar := .Site.Params.home.profile.avatarURL -}}
{{- with .Site.Params.home.profile.gravatarEmail -}}
{{- $avatar = md5 . | printf "https://www.gravatar.com/avatar/%s?s=240&d=mp" -}}
2020-01-31 15:53:04 +01:00
{{- end -}}
{{- with $avatar -}}
2019-08-24 13:32:41 +02:00
<div class="home-avatar">
<a href="/posts">
<img src={{ . | relURL }} alt="avatar" title="{{ T "home" }}">
2019-08-10 21:26:03 +02:00
</a>
</div>
2020-01-31 15:53:04 +01:00
{{- end -}}
2019-08-10 21:26:03 +02:00
{{- with .Site.Params.home.profile.subtitle -}}
2019-08-24 13:32:41 +02:00
<h2 class="home-description">
{{- if $.Site.Params.home.profile.typeit -}}
{{- $id := md5 . | printf "tp-%s" -}}
<div id={{ printf "r%s" $id }} hidden=true>
2020-02-18 09:22:24 +01:00
{{- /* FIXME: https://github.com/gohugoio/hugo/issues/6882 */ -}}
{{- /* . | $.RenderString | safeHTML */ -}}
{{- . | markdownify | safeHTML -}}
</div>
<div id={{ $id }} class="typeit"></div>
{{- $.Scratch.SetInMap "typeitMap" $id (slice $id) -}}
2020-01-31 15:53:04 +01:00
{{- else -}}
2020-02-18 09:22:24 +01:00
{{- /* FIXME: https://github.com/gohugoio/hugo/issues/6882 */ -}}
{{- /* . | $.RenderString | safeHTML */ -}}
{{- . | markdownify | safeHTML -}}
2020-01-31 15:53:04 +01:00
{{- end -}}
2019-08-10 21:26:03 +02:00
</h2>
2020-01-31 15:53:04 +01:00
{{- end -}}
2019-08-10 21:26:03 +02:00
2019-08-24 13:32:41 +02:00
<div class="home-social-links">
{{- if .Site.Params.home.profile.social -}}
2020-02-21 16:42:35 +01:00
{{- partial "plugin/social.html" . -}}
{{- end -}}
2019-08-10 21:26:03 +02:00
</div>
</div>