Files
web/themes/minimal-black/layouts/_default/about.html
2026-03-23 18:35:59 +01:00

78 lines
2.4 KiB
HTML

{{ define "main" }}
<section class="layout-page">
<article class="about-page">
<!-- Hero Section -->
<header class="about-hero">
<div class="about-hero-content">
{{ with .Site.Params.hero.avatar }}
<div class="about-avatar">
<img src="{{ . | relURL }}" alt="{{ $.Site.Params.brand }}" />
</div>
{{ end }}
<h1 class="about-title">{{ .Title }}</h1>
{{ with .Params.subtitle }}
<p class="about-subtitle">{{ . }}</p>
{{ end }}
</div>
</header>
<!-- Main Content -->
<div class="about-content">
<div class="card card-pad markdown-body">
{{ $content := .Content }}
{{ $content = replace $content "<hr>" "|||SPLIT|||" }}
{{ $content = replace $content "<hr />" "|||SPLIT|||" }}
{{ $content = replace $content "<hr/>" "|||SPLIT|||" }}
{{ $parts := split $content "|||SPLIT|||" }}
{{ if eq (len $parts) 1 }}
<!-- No timeline, render normally -->
{{ .Content }}
{{ else }}
<!-- Render intro section (everything before first hr) -->
{{ index $parts 0 | safeHTML }}
<!-- Render timeline -->
<div class="timeline">
{{ range after 1 $parts }}
{{ $trimmed := trim . " \n\t" }}
{{ if $trimmed }}
<div class="timeline-item">
<div class="timeline-marker"></div>
<div class="timeline-content">
{{ . | safeHTML }}
</div>
</div>
{{ end }}
{{ end }}
</div>
{{ end }}
</div>
</div>
<!-- Social Links Footer -->
{{ with .Site.Params.social }}
<div class="about-social">
<h3 class="about-social-title">Let's Connect</h3>
<div class="about-social-links">
{{ range . }}
<a
href="{{ .url }}"
class="about-social-link"
target="_blank"
rel="noopener noreferrer"
aria-label="{{ .label }}"
>
<i class="{{ .icon }}"></i>
<span>{{ .label }}</span>
</a>
{{ end }}
</div>
</div>
{{ end }}
</article>
</section>
{{ end }}