Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/rhazdon/hugo-theme-hello-friend-ng.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--layouts/index.html5
-rw-r--r--layouts/partials/subtitle.html3
2 files changed, 5 insertions, 3 deletions
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 }}
<h1>{{ .Site.Title }}</h1>
- {{- with .Site.Params.homeSubtitle }}
- <p>{{.}}</p>
- {{- end }}
+
+ {{ partial "subtitle.html" . }}
{{- with .Site.Params.social }}
<div>
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 }}
+ <p>{{.}}</p>
+{{- end }} \ No newline at end of file