Update gallery page

Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
This commit is contained in:
2025-09-13 21:36:59 +00:00
parent 9905066046
commit 08b8041c43
8 changed files with 102 additions and 98 deletions

View File

@@ -1,5 +1,8 @@
<section class="hero">
<h1 class="title">{{ .Title }}</h1>
{{ partial "components/meta/index.html" . }}
{{ partial "components/image/index.html" (dict "page" .Page "image" .Params.hero) }}
{{ $hero := partial "components/hero/process.html" .Params.hero }}
{{ $data := partial "components/image/process.html" (dict "page" .Page "src" $hero.src) }}
{{ partial "components/image/index.html" (merge $data $hero) }}
</section>