From 039a2f2755e0115b0339fea56d97fd90c4bbc951 Mon Sep 17 00:00:00 2001 From: Hunter Kvalevog Date: Thu, 11 Sep 2025 21:12:26 -0500 Subject: --- themes/hugo-xmin/layouts/404.html | 5 +++++ themes/hugo-xmin/layouts/_default/list.html | 16 ++++++++++++++++ themes/hugo-xmin/layouts/_default/single.html | 12 ++++++++++++ themes/hugo-xmin/layouts/_default/terms.html | 13 +++++++++++++ themes/hugo-xmin/layouts/index.html | 26 ++++++++++++++++++++++++++ themes/hugo-xmin/layouts/partials/footer.html | 8 ++++++++ themes/hugo-xmin/layouts/partials/header.html | 20 ++++++++++++++++++++ 7 files changed, 100 insertions(+) create mode 100644 themes/hugo-xmin/layouts/404.html create mode 100644 themes/hugo-xmin/layouts/_default/list.html create mode 100644 themes/hugo-xmin/layouts/_default/single.html create mode 100644 themes/hugo-xmin/layouts/_default/terms.html create mode 100644 themes/hugo-xmin/layouts/index.html create mode 100644 themes/hugo-xmin/layouts/partials/footer.html create mode 100644 themes/hugo-xmin/layouts/partials/header.html (limited to 'themes/hugo-xmin/layouts') diff --git a/themes/hugo-xmin/layouts/404.html b/themes/hugo-xmin/layouts/404.html new file mode 100644 index 0000000..c2e4e40 --- /dev/null +++ b/themes/hugo-xmin/layouts/404.html @@ -0,0 +1,5 @@ +{{ partial "header.html" . }} + +404 NOT FOUND + +{{ partial "footer.html" . }} diff --git a/themes/hugo-xmin/layouts/_default/list.html b/themes/hugo-xmin/layouts/_default/list.html new file mode 100644 index 0000000..351a976 --- /dev/null +++ b/themes/hugo-xmin/layouts/_default/list.html @@ -0,0 +1,16 @@ +{{ partial "header.html" . }} + +{{ .Content }} + + + +{{ partial "footer.html" . }} diff --git a/themes/hugo-xmin/layouts/_default/single.html b/themes/hugo-xmin/layouts/_default/single.html new file mode 100644 index 0000000..ecf1861 --- /dev/null +++ b/themes/hugo-xmin/layouts/_default/single.html @@ -0,0 +1,12 @@ +{{ partial "header.html" . }} +
+

{{ .Title | markdownify }}

+{{ with .Params.author }}

{{ . }}

{{ end }} +{{ if (gt .Params.date 0) }}

{{ .Date.Format "2006/01/02" }}

{{ end }} +
+ +
+{{ .Content }} +
+ +{{ partial "footer.html" . }} diff --git a/themes/hugo-xmin/layouts/_default/terms.html b/themes/hugo-xmin/layouts/_default/terms.html new file mode 100644 index 0000000..71f47e7 --- /dev/null +++ b/themes/hugo-xmin/layouts/_default/terms.html @@ -0,0 +1,13 @@ +{{ partial "header.html" . }} + +

{{ .Title }}

+ + + +{{ partial "footer.html" . }} diff --git a/themes/hugo-xmin/layouts/index.html b/themes/hugo-xmin/layouts/index.html new file mode 100644 index 0000000..a3daf68 --- /dev/null +++ b/themes/hugo-xmin/layouts/index.html @@ -0,0 +1,26 @@ +{{ partial "header.html" . }} + +{{ .Content }} + +

Cheat Sheets:

+ + +

Posts:

+ + +{{ partial "footer.html" . }} \ No newline at end of file diff --git a/themes/hugo-xmin/layouts/partials/footer.html b/themes/hugo-xmin/layouts/partials/footer.html new file mode 100644 index 0000000..e8560f2 --- /dev/null +++ b/themes/hugo-xmin/layouts/partials/footer.html @@ -0,0 +1,8 @@ + + + diff --git a/themes/hugo-xmin/layouts/partials/header.html b/themes/hugo-xmin/layouts/partials/header.html new file mode 100644 index 0000000..970ccec --- /dev/null +++ b/themes/hugo-xmin/layouts/partials/header.html @@ -0,0 +1,20 @@ + + + + + + {{ .Title }} | {{ .Site.Title }} + + + + + + -- cgit v1.2.3