13 lines
390 B
HTML
13 lines
390 B
HTML
{{ define "main" }}
|
|
<section class="layout-page">
|
|
<div class="page-int section-stack section-stack--home">
|
|
{{ $default := slice "hero" "now" "tech-marquee" "projects" "posts" }}
|
|
{{ $sections := .Site.Params.home.sections | default $default }}
|
|
|
|
{{ range $sections }}
|
|
{{ partial (printf "home/%s.html" .) $ }}
|
|
{{ end }}
|
|
</div>
|
|
</section>
|
|
{{ end }}
|