From 82832c1244f2d536c754efb98fbdb02b1844f4c7 Mon Sep 17 00:00:00 2001 From: digitalcraftsman Date: Thu, 7 Sep 2017 21:41:16 +0200 Subject: Make use of the base template --- layouts/index.html | 33 ++++++++++----------------------- 1 file changed, 10 insertions(+), 23 deletions(-) (limited to 'layouts/index.html') diff --git a/layouts/index.html b/layouts/index.html index 36f3ac2..3fed5be 100644 --- a/layouts/index.html +++ b/layouts/index.html @@ -1,26 +1,13 @@ -{{ partial "head.html" . }} - - -{{ partial "sidebar.html" . }} - -
+{{ define "main" -}}
- - {{ range .Data.Pages }} -
-

- - {{ .Title }} - -

- - - - {{ .Content }} -
- {{ end }} +{{ range .Data.Pages -}} +
+

+ {{ .Title }} +

+ + {{ .Content }}
+{{- end }}
- - - +{{- end }} \ No newline at end of file -- cgit 1.4.1 From b469743f16f9084951a2ba7a875b31b30e1213c9 Mon Sep 17 00:00:00 2001 From: JinGen Lim Date: Sun, 1 Oct 2017 11:26:37 +0800 Subject: Implement Content Summaries / Split on index page Posts in the index page will be automatically summarized to its first 70 words, or until a user-defined divider. When summarized, the "Read More" button also appears with a RelPermalink to the full post. https://gohugo.io/content-management/summaries/ --- layouts/index.html | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'layouts/index.html') diff --git a/layouts/index.html b/layouts/index.html index 3fed5be..209009e 100644 --- a/layouts/index.html +++ b/layouts/index.html @@ -6,7 +6,12 @@ {{ .Title }} {{ .Date.Format "Mon, Jan 2, 2006" }} - {{ .Content }} + {{ .Summary }} + {{ if .Truncated }} + + {{ end }}
{{- end }} -- cgit 1.4.1