diff --git a/layouts/index.html b/layouts/index.html index 56dc443..d0c02a4 100644 --- a/layouts/index.html +++ b/layouts/index.html @@ -10,9 +10,8 @@ {{ end }}

{{ .Site.Title }}

- {{- with .Site.Params.homeSubtitle }} -

{{.}}

- {{- end }} + + {{ partial "subtitle.html" . }} {{- with .Site.Params.social }}
diff --git a/layouts/partials/subtitle.html b/layouts/partials/subtitle.html new file mode 100644 index 0000000..f7f3e24 --- /dev/null +++ b/layouts/partials/subtitle.html @@ -0,0 +1,3 @@ +{{- with .Site.Params.homeSubtitle }} +

{{.}}

+{{- end }} \ No newline at end of file