921a852cbf
- Hero text panel moved to bottom with frosted glass effect (blur 5px, dark semi-transparent background, hairline top border) - Scroll arrow centered inside glass panel at the bottom - Three-layer parallax: image 55%, text 65%, page 100% - Zeremonie album date fixed (was future-dated, now visible) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
37 lines
1.2 KiB
HTML
37 lines
1.2 KiB
HTML
{{ define "main" }}
|
|
{{ $heroImage := .Resources.GetMatch "hero*" }}
|
|
{{ if $heroImage }}
|
|
{{ $img := $heroImage.Filter (slice images.AutoOrient (images.Process "fit 1920x1080")) }}
|
|
<section class="hero">
|
|
<div class="hero-bg" style="background-image: url({{ $img.RelPermalink }})"></div>
|
|
<div class="hero-fg">
|
|
<div class="hero-content">
|
|
<h1>{{ .Title }}</h1>
|
|
{{ with .Params.tagline }}<p>{{ . }}</p>{{ end }}
|
|
<div class="hero-scroll" aria-hidden="true">
|
|
<span class="hero-scroll-icon">
|
|
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round">
|
|
<path d="M6 9l6 6 6-6"/>
|
|
</svg>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
{{ else }}
|
|
{{ partial "title.html" . }}
|
|
{{ end }}
|
|
{{ with .Content }}
|
|
<section class="home-intro">
|
|
<div class="prose">{{ . }}</div>
|
|
</section>
|
|
{{ end }}
|
|
{{ partial "categories.html" }}
|
|
{{ partial "featured.html" . }}
|
|
<section class="galleries">
|
|
{{ range where .Pages "Params.private" "ne" true }}
|
|
{{ partial "album-card.html" . }}
|
|
{{ end }}
|
|
</section>
|
|
{{ end }}
|