2019-05-11 19:28:17 +02:00
|
|
|
{{ define "pagename" }}
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{ define "main" }}
|
|
|
|
{{ .Content }}
|
|
|
|
|
2019-08-04 17:11:50 +02:00
|
|
|
{{ range where .Sections "Type" "==" "recettes" }}
|
|
|
|
<h2 class="homepagecat">{{ .Title }}</h2>
|
2019-05-11 19:28:17 +02:00
|
|
|
{{ partial "recipelist.html" . }}
|
|
|
|
{{ end }}
|
2019-08-04 17:11:50 +02:00
|
|
|
|
|
|
|
{{ range where .Sections "Type" "==" "posts" }}
|
|
|
|
<h2 class="homepagecat">{{ .Title }}</h2>
|
|
|
|
{{ partial "postlist.html" . }}
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{ end }}
|