8 lines
178 B
HTML
8 lines
178 B
HTML
{{ define "content" }}
|
|
{{ if eq .Site.Params.home_mode "post" }}
|
|
{{ partial "home_post.html" . }}
|
|
{{ else }}
|
|
{{ partial "home_profile.html" . }}
|
|
{{ end }}
|
|
{{ end }}
|