portfoligor/layouts/_default/home.html

12 lines
364 B
HTML

{{ define "main" }}
<!-- List the 5 last posts if the home_post_list parameters is set to true -->
{{ if .Site.Params.home_post_list }}
{{ partial "home_post_list" . }}
{{ end }}
<section class="home-content">
<!-- Content for home.html, as a sort of list page,
is pulled from content/_index.md -->
{{.Content}}
</section>
{{ end }}