30 lines
775 B
HTML
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 }} |