From 5a2fc4bbe438bda0bc028d7b1be8bbbc35870577 Mon Sep 17 00:00:00 2001 From: bacalhau Date: Wed, 19 Mar 2025 22:53:34 +0000 Subject: [PATCH] Upload files to "layouts/_default" --- layouts/_default/baseof.html | 36 ++++++++++++++++++++++++++++++++++++ layouts/_default/list.html | 23 +++++++++++++++++++++++ layouts/_default/rss.xml | 31 +++++++++++++++++++++++++++++++ layouts/_default/single.html | 3 +++ 4 files changed, 93 insertions(+) create mode 100644 layouts/_default/baseof.html create mode 100644 layouts/_default/list.html create mode 100644 layouts/_default/rss.xml create mode 100644 layouts/_default/single.html diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html new file mode 100644 index 0000000..4712c57 --- /dev/null +++ b/layouts/_default/baseof.html @@ -0,0 +1,36 @@ + + + + {{ if not .IsHome }}{{ .Title | title }} | {{ end }}{{ .Site.Title }} + + + + {{ with .Site.Params.favicon }}{{ end }} + + {{ if isset .Params "tags" }}{{ end }} + + + + + +
+

{{ .Site.Title }}

+{{ if .Site.Menus.main }}{{ partial "nav.html" . }}{{ end }} +
+
+

{{ .Title }}

+{{ block "main" . }} +{{ .Content }} +{{ end }} +{{ if .Param "taglist" }}{{ partial "taglist.html" . }}{{ end }} +
+{{ if .Param "nextprev" }}{{ partial "nextprev.html" . }}{{ end }} +
+
+{{ block "footer" . }} + +{{ end }} + + diff --git a/layouts/_default/list.html b/layouts/_default/list.html new file mode 100644 index 0000000..e22283f --- /dev/null +++ b/layouts/_default/list.html @@ -0,0 +1,23 @@ +{{ define "title" -}} +{{ .Title | title }} +{{- end }} +{{ define "main" -}} +{{ .Content }} +{{ if not .IsHome }} + +{{ end }} + +{{- end }} diff --git a/layouts/_default/rss.xml b/layouts/_default/rss.xml new file mode 100644 index 0000000..635a2f6 --- /dev/null +++ b/layouts/_default/rss.xml @@ -0,0 +1,31 @@ + + + {{.Site.Params.favicon }} + {{ .Site.Title }} + {{ .Permalink }}/ + + + {{ .Site.Title }} + {{ .Permalink }} + Recent content {{ if ne .Title .Site.Title }}{{ with .Title }}in {{.}} {{ end }}{{ end }}on {{ .Site.Title }} + Hugo -- gohugo.io{{ with .Site.LanguageCode }} + {{.}}{{end}}{{ with .Site.Author.email }} + {{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}{{end}}{{ with .Site.Author.email }} + {{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}{{end}}{{ with .Site.Copyright }} + {{.}}{{end}}{{ if not .Date.IsZero }} + {{ .Date.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }}{{ end }} + {{ with .OutputFormats.Get "RSS" }} + {{ printf "" .Permalink .MediaType | safeHTML }} + {{ end }} + {{ range .Site.RegularPages }} + + {{ .Title }} + {{ .Permalink }} + {{ .Date.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }} + {{ with .Site.Author.email }}{{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}{{end}} + {{ .Permalink }} + {{- .Content | html -}} + + {{ end }} + + diff --git a/layouts/_default/single.html b/layouts/_default/single.html new file mode 100644 index 0000000..56c5a11 --- /dev/null +++ b/layouts/_default/single.html @@ -0,0 +1,3 @@ +{{ define "title" -}} +{{ .Title }} +{{- end }}