From ca9efbcaaaffc5c79af93188c991051ba1c7a42e Mon Sep 17 00:00:00 2001 From: Skiz Date: Wed, 17 Jul 2024 20:12:54 -0400 Subject: Created theme file --- themes/schizo/layouts/_default/baseof.html | 36 ++++++++++++++++++++++++++ themes/schizo/layouts/_default/list.html | 20 ++++++++++++++ themes/schizo/layouts/_default/rss.xml | 26 +++++++++++++++++++ themes/schizo/layouts/_default/single.html | 3 +++ themes/schizo/layouts/index.html | 0 themes/schizo/layouts/partials/nav.html | 8 ++++++ themes/schizo/layouts/partials/nextprev.html | 10 +++++++ themes/schizo/layouts/partials/taglist.html | 13 ++++++++++ themes/schizo/layouts/shortcodes/hidvid.html | 10 +++++++ themes/schizo/layouts/shortcodes/img.html | 20 ++++++++++++++ themes/schizo/layouts/shortcodes/tagcloud.html | 3 +++ themes/schizo/layouts/shortcodes/vid.html | 6 +++++ 12 files changed, 155 insertions(+) create mode 100644 themes/schizo/layouts/_default/baseof.html create mode 100644 themes/schizo/layouts/_default/list.html create mode 100644 themes/schizo/layouts/_default/rss.xml create mode 100644 themes/schizo/layouts/_default/single.html create mode 100644 themes/schizo/layouts/index.html create mode 100644 themes/schizo/layouts/partials/nav.html create mode 100644 themes/schizo/layouts/partials/nextprev.html create mode 100644 themes/schizo/layouts/partials/taglist.html create mode 100644 themes/schizo/layouts/shortcodes/hidvid.html create mode 100644 themes/schizo/layouts/shortcodes/img.html create mode 100644 themes/schizo/layouts/shortcodes/tagcloud.html create mode 100644 themes/schizo/layouts/shortcodes/vid.html (limited to 'themes/schizo/layouts') diff --git a/themes/schizo/layouts/_default/baseof.html b/themes/schizo/layouts/_default/baseof.html new file mode 100644 index 0000000..57e17ce --- /dev/null +++ b/themes/schizo/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 -}} + + + + + +{{ if .Site.Menus.main }}{{ partial "nav.html" . }}{{ end -}} +
+

{{ block "title" . }}{{ end }}

+
+{{ block "main" . }} +{{ .Content }} +{{ end }} +{{ if .Param "nextprev" }}{{ partial "nextprev.html" . -}}{{ end -}} +{{ if .Param "taglist" }}{{ partial "taglist.html" . }}{{ end -}} +
+
+{{ block "footer" . }} + +{{ end }} + + diff --git a/themes/schizo/layouts/_default/list.html b/themes/schizo/layouts/_default/list.html new file mode 100644 index 0000000..601fc08 --- /dev/null +++ b/themes/schizo/layouts/_default/list.html @@ -0,0 +1,20 @@ +{{ define "title" -}} +{{ .Title | title }} +{{- end }} +{{ define "main" -}} +{{ .Content }} + +{{- end }} diff --git a/themes/schizo/layouts/_default/rss.xml b/themes/schizo/layouts/_default/rss.xml new file mode 100644 index 0000000..38dbe3d --- /dev/null +++ b/themes/schizo/layouts/_default/rss.xml @@ -0,0 +1,26 @@ + + + {{ .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/themes/schizo/layouts/_default/single.html b/themes/schizo/layouts/_default/single.html new file mode 100644 index 0000000..56c5a11 --- /dev/null +++ b/themes/schizo/layouts/_default/single.html @@ -0,0 +1,3 @@ +{{ define "title" -}} +{{ .Title }} +{{- end }} diff --git a/themes/schizo/layouts/index.html b/themes/schizo/layouts/index.html new file mode 100644 index 0000000..e69de29 diff --git a/themes/schizo/layouts/partials/nav.html b/themes/schizo/layouts/partials/nav.html new file mode 100644 index 0000000..a7318fe --- /dev/null +++ b/themes/schizo/layouts/partials/nav.html @@ -0,0 +1,8 @@ + diff --git a/themes/schizo/layouts/partials/nextprev.html b/themes/schizo/layouts/partials/nextprev.html new file mode 100644 index 0000000..099f16d --- /dev/null +++ b/themes/schizo/layouts/partials/nextprev.html @@ -0,0 +1,10 @@ +{{ if or .Next .Prev -}} +
+{{- with .Prev }} +
Previous:
{{.Title}}
+{{ end -}} +{{- with .Next -}} +
Next:
{{.Title}}
+{{ end -}} +
+{{ end -}} diff --git a/themes/schizo/layouts/partials/taglist.html b/themes/schizo/layouts/partials/taglist.html new file mode 100644 index 0000000..757db6f --- /dev/null +++ b/themes/schizo/layouts/partials/taglist.html @@ -0,0 +1,13 @@ + {{- if isset .Params "tags" -}} + {{- $tagsLen := len .Params.tags -}} + {{- if gt $tagsLen 0 -}} +
+ {{- with .Site.Params.relatedtext }}{{ . }}
{{ end -}} + {{- range $k, $v := .Params.tags -}} + {{- $url := printf "tags/%s" (. | urlize | lower) -}} + {{ . | title }} + {{- if lt $k (sub $tagsLen 1) }} · {{ end -}} + {{- end -}} +
+ {{- end -}} + {{- end }} diff --git a/themes/schizo/layouts/shortcodes/hidvid.html b/themes/schizo/layouts/shortcodes/hidvid.html new file mode 100644 index 0000000..14f592d --- /dev/null +++ b/themes/schizo/layouts/shortcodes/hidvid.html @@ -0,0 +1,10 @@ +
+ Click to reveal video. + +
diff --git a/themes/schizo/layouts/shortcodes/img.html b/themes/schizo/layouts/shortcodes/img.html new file mode 100644 index 0000000..ff7959b --- /dev/null +++ b/themes/schizo/layouts/shortcodes/img.html @@ -0,0 +1,20 @@ + +
+ {{- with .Get "link"}}{{ end -}} + {{.}} + {{- if .Get "link"}}{{ end -}} + {{- with .Get "caption" -}} +
+ {{- . -}} +
+ {{- end -}} +
diff --git a/themes/schizo/layouts/shortcodes/tagcloud.html b/themes/schizo/layouts/shortcodes/tagcloud.html new file mode 100644 index 0000000..0cf0118 --- /dev/null +++ b/themes/schizo/layouts/shortcodes/tagcloud.html @@ -0,0 +1,3 @@ +{{ if isset .Site.Taxonomies "tags" }}{{ if not (eq (len .Site.Taxonomies.tags) 0) }} {{ end }}{{ end }} diff --git a/themes/schizo/layouts/shortcodes/vid.html b/themes/schizo/layouts/shortcodes/vid.html new file mode 100644 index 0000000..4c612fe --- /dev/null +++ b/themes/schizo/layouts/shortcodes/vid.html @@ -0,0 +1,6 @@ + -- cgit v1.2.3