Website/layouts/createurs/single.html
Martin Gasque 0ba3f3c7c5 Initial commit
Will it deploy one day ?
2024-02-20 08:59:37 +01:00

30 lines
775 B
HTML

{{ define "main" }}
<div class="container">
<section class="page-header--c">
<h1 class="page-header-title">{{ .Title | upper }}</h1>
</section>
</div>
<div class="about">
{{ if eq .Site.Params.about_page_socials true }}
{{ end }}
<article class="single-container markdown">
<div class="creator-single-img">
{{ partial "general/feature-image.html" . }}
</div>
{{ .Content }}
<div class="creator-projects">
{{$creatorName := .Title}}
{{ range (where .Site.Pages "Section" "projets") }}
{{$currentPage := .}}
{{range .Params.project_types}}
{{if eq . $creatorName}}
{{partial "projets/project-entry.html" $currentPage}}
{{ end }}
{{ end }}
{{ end }}
</div>
</article>
</div>
{{ end }}