21 lines
683 B
HTML
21 lines
683 B
HTML
{{ $data := index .Site.Data .Site.Language.Lang }}
|
|
{{ $profileImage := "/images/profile.jpg" }}
|
|
{{ with $data.personal_details }}
|
|
{{ if .profile_image }}
|
|
{{ $profileImage = .profile_image }}
|
|
{{ end }}
|
|
{{ end }}
|
|
{{ $profileAlt := .Site.Params.profileAlt | default (printf "Profile photo" ) }}
|
|
|
|
<div class="pt-3 pb-0 image-container" style="height: 11rem;">
|
|
<img
|
|
src="{{ $profileImage | relURL }}"
|
|
alt="{{ $profileAlt }}"
|
|
class="rounded-full h-40 w-40 object-cover shadow-md profile-avatar mb-4"
|
|
height="160"
|
|
width="160"
|
|
loading="eager"
|
|
>
|
|
</div>
|
|
<hr class="mt-4 mb-2 border-neutral-200 dark:border-neutral-700">
|