mirror of
https://github.com/dillonzq/LoveIt.git
synced 2024-11-15 11:33:20 +01:00
37 lines
1.3 KiB
HTML
37 lines
1.3 KiB
HTML
{{- $scratch := .Scratch.Get "scratch" -}}
|
|
|
|
<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" -}}
|
|
{{- end -}}
|
|
{{- with $avatar -}}
|
|
<div class="home-avatar">
|
|
<a href="/posts">
|
|
{{- partial "plugin/image.html" (dict "src_s" . "title" "avatar" "description" (T "home") "scratch" $scratch) -}}
|
|
</a>
|
|
</div>
|
|
{{- end -}}
|
|
|
|
{{- with .Site.Params.home.profile.subtitle -}}
|
|
<h2 class="home-subtitle">
|
|
{{- if $.Site.Params.home.profile.typeit -}}
|
|
{{- $id := partial "function/id.html" (dict "content" . "scratch" $scratch) -}}
|
|
<div id="{{ $id }}" class="typeit"></div>
|
|
{{- $scratch.SetInMap "typeitMap" $id (slice $id) -}}
|
|
{{- else -}}
|
|
{{- . -}}
|
|
{{- end -}}
|
|
</h2>
|
|
{{- end -}}
|
|
|
|
{{- if .Site.Params.home.profile.social -}}
|
|
{{- partial "plugin/social.html" (dict "social" .Site.Params.social "scratch" $scratch) -}}
|
|
{{- end -}}
|
|
|
|
{{- with .Site.Params.home.profile.disclaimer -}}
|
|
<h3 class="home-disclaimer">
|
|
{{- . | safeHTML -}}
|
|
</h3>
|
|
{{- end -}}
|
|
</div>
|