2025-09-03 22:11:20 -04:00
|
|
|
{{/* layouts/partials/profile.html */}}
|
|
|
|
<div class="flex flex-col items-center mb-8">
|
|
|
|
{{ with .Params.profileImage }}
|
|
|
|
{{/* strip leading “/” if present, otherwise leave as-is */}}
|
|
|
|
{{ $img := replaceRE "^/" "" . }}
|
|
|
|
<img src="{{ $img }}"
|
|
|
|
alt="{{ $.Params.name }}"
|
|
|
|
class="profile-pic mb-4">
|
|
|
|
{{ end }}
|
2025-09-04 09:14:04 -04:00
|
|
|
<h1 class="text-4xl font-bold mb-2 text-center" style="color: var(--text-color)">
|
2025-09-03 22:11:20 -04:00
|
|
|
{{ .Params.name }}
|
|
|
|
</h1>
|
2025-09-04 09:14:04 -04:00
|
|
|
<p class="text-center opacity-80 mb-6 text-xl">{{ .Params.description }}</p>
|
2025-09-03 22:11:20 -04:00
|
|
|
|
|
|
|
<div class="flex flex-wrap justify-center gap-4 mb-8 social-icons">
|
|
|
|
{{ range .Params.socials }}
|
|
|
|
<a href="{{ .url }}" class="text-xl" target="_blank" rel="noopener">
|
|
|
|
<i class="{{ .icon }} icon"></i>
|
|
|
|
</a>
|
|
|
|
{{ end }}
|
|
|
|
</div>
|
2025-09-04 09:14:04 -04:00
|
|
|
</div>
|