18 lines
358 B
HTML
Executable File
18 lines
358 B
HTML
Executable File
{{ define "main" }}
|
|
{{ if not .Site.Params.about.hide }}
|
|
{{ partial "about" . }}
|
|
{{ end }}
|
|
|
|
{{ if not .Site.Params.portfolio.hide }}
|
|
{{ partial "portfolio" . }}
|
|
{{ end }}
|
|
|
|
{{ if not .Site.Params.recentposts.hide }}
|
|
{{ partial "recent-posts" . }}
|
|
{{ end }}
|
|
|
|
{{ if not .Site.Params.contact.hide }}
|
|
{{ partial "contact" . }}
|
|
{{ end }}
|
|
{{ end }}
|