From a51c9890d2b9720297c72b646c894a11474e8532 Mon Sep 17 00:00:00 2001 From: Hunter Kvalevog Date: Mon, 29 Jun 2026 23:15:12 -0500 Subject: --- themes/kvog/archetypes/default.md | 5 --- themes/kvog/assets/css/components/footer.css | 4 --- themes/kvog/assets/css/components/header.css | 4 --- themes/kvog/assets/css/main.css | 21 ----------- themes/kvog/assets/js/main.js | 1 - themes/kvog/content/_index.md | 9 ----- themes/kvog/hugo.toml | 32 ----------------- themes/kvog/layouts/_partials/footer.html | 1 - themes/kvog/layouts/_partials/head.html | 5 --- themes/kvog/layouts/_partials/head/css.html | 15 -------- themes/kvog/layouts/_partials/head/js.html | 15 -------- themes/kvog/layouts/_partials/header.html | 4 --- themes/kvog/layouts/_partials/menu.html | 51 --------------------------- themes/kvog/layouts/_partials/terms.html | 23 ------------ themes/kvog/layouts/baseof.html | 17 --------- themes/kvog/layouts/home.html | 17 --------- themes/kvog/layouts/page.html | 10 ------ themes/kvog/layouts/section.html | 18 ---------- themes/kvog/layouts/taxonomy.html | 7 ---- themes/kvog/layouts/term.html | 7 ---- themes/kvog/static/favicon.ico | Bin 15406 -> 0 bytes 21 files changed, 266 deletions(-) delete mode 100644 themes/kvog/archetypes/default.md delete mode 100644 themes/kvog/assets/css/components/footer.css delete mode 100644 themes/kvog/assets/css/components/header.css delete mode 100644 themes/kvog/assets/css/main.css delete mode 100644 themes/kvog/assets/js/main.js delete mode 100644 themes/kvog/content/_index.md delete mode 100644 themes/kvog/hugo.toml delete mode 100644 themes/kvog/layouts/_partials/footer.html delete mode 100644 themes/kvog/layouts/_partials/head.html delete mode 100644 themes/kvog/layouts/_partials/head/css.html delete mode 100644 themes/kvog/layouts/_partials/head/js.html delete mode 100644 themes/kvog/layouts/_partials/header.html delete mode 100644 themes/kvog/layouts/_partials/menu.html delete mode 100644 themes/kvog/layouts/_partials/terms.html delete mode 100644 themes/kvog/layouts/baseof.html delete mode 100644 themes/kvog/layouts/home.html delete mode 100644 themes/kvog/layouts/page.html delete mode 100644 themes/kvog/layouts/section.html delete mode 100644 themes/kvog/layouts/taxonomy.html delete mode 100644 themes/kvog/layouts/term.html delete mode 100644 themes/kvog/static/favicon.ico (limited to 'themes') diff --git a/themes/kvog/archetypes/default.md b/themes/kvog/archetypes/default.md deleted file mode 100644 index 25b6752..0000000 --- a/themes/kvog/archetypes/default.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -date = '{{ .Date }}' -draft = true -title = '{{ replace .File.ContentBaseName "-" " " | title }}' -+++ diff --git a/themes/kvog/assets/css/components/footer.css b/themes/kvog/assets/css/components/footer.css deleted file mode 100644 index abe2b5a..0000000 --- a/themes/kvog/assets/css/components/footer.css +++ /dev/null @@ -1,4 +0,0 @@ -footer { - border-top: 1px solid #222; - margin-top: 1rem; -} diff --git a/themes/kvog/assets/css/components/header.css b/themes/kvog/assets/css/components/header.css deleted file mode 100644 index 8efea1e..0000000 --- a/themes/kvog/assets/css/components/header.css +++ /dev/null @@ -1,4 +0,0 @@ -header { - border-bottom: 1px solid #222; - margin-bottom: 1rem; -} diff --git a/themes/kvog/assets/css/main.css b/themes/kvog/assets/css/main.css deleted file mode 100644 index e0bb58c..0000000 --- a/themes/kvog/assets/css/main.css +++ /dev/null @@ -1,21 +0,0 @@ -@import "components/header.css"; -@import "components/footer.css"; - -body { - color: #222; - font-family: sans-serif; - font-family: Arial, sans-serif; - font-size: 13px; - margin: 1rem; - max-width: 1024px; -} - -a { - color: #00e; - text-decoration: none; -} - -summary { - cursor: pointer; -} - diff --git a/themes/kvog/assets/js/main.js b/themes/kvog/assets/js/main.js deleted file mode 100644 index e2aac52..0000000 --- a/themes/kvog/assets/js/main.js +++ /dev/null @@ -1 +0,0 @@ -console.log('This site was generated by Hugo.'); diff --git a/themes/kvog/content/_index.md b/themes/kvog/content/_index.md deleted file mode 100644 index a3b8328..0000000 --- a/themes/kvog/content/_index.md +++ /dev/null @@ -1,9 +0,0 @@ -+++ -title = 'Home' -date = 2023-01-01T08:00:00-07:00 -draft = false -+++ - -This website is very messed up at the moment. Sorry. - -🦍 diff --git a/themes/kvog/hugo.toml b/themes/kvog/hugo.toml deleted file mode 100644 index a84662e..0000000 --- a/themes/kvog/hugo.toml +++ /dev/null @@ -1,32 +0,0 @@ -baseURL = 'https://example.org/' -locale = 'en-US' -title = 'My New Hugo Project' - -[menus] - [[menus.main]] - name = 'Home' - pageRef = '/' - weight = 10 - -# [[menus.main]] -# name = 'Posts' -# pageRef = '/posts' -# weight = 20 - -# [[menus.main]] -# name = 'Notes' -# pageRef = '/notes' -# weight = 30 - -# [[menus.main]] -# name = 'Tags' -# pageRef = '/tags' -# weight = 40 - -[module] - [module.hugoVersion] - extended = false - min = '0.146.0' - -[markup.goldmark.renderer] - unsafe = true diff --git a/themes/kvog/layouts/_partials/footer.html b/themes/kvog/layouts/_partials/footer.html deleted file mode 100644 index a7cd916..0000000 --- a/themes/kvog/layouts/_partials/footer.html +++ /dev/null @@ -1 +0,0 @@ -

Copyright {{ now.Year }}. All rights reserved.

diff --git a/themes/kvog/layouts/_partials/head.html b/themes/kvog/layouts/_partials/head.html deleted file mode 100644 index 02c2240..0000000 --- a/themes/kvog/layouts/_partials/head.html +++ /dev/null @@ -1,5 +0,0 @@ - - -{{ if .IsHome }}{{ site.Title }}{{ else }}{{ printf "%s | %s" .Title site.Title }}{{ end }} -{{ partialCached "head/css.html" . }} -{{ partialCached "head/js.html" . }} diff --git a/themes/kvog/layouts/_partials/head/css.html b/themes/kvog/layouts/_partials/head/css.html deleted file mode 100644 index 8897866..0000000 --- a/themes/kvog/layouts/_partials/head/css.html +++ /dev/null @@ -1,15 +0,0 @@ -{{- with resources.Get "css/main.css" }} - {{- $opts := dict - "minify" (cond hugo.IsDevelopment false true) - "sourceMap" (cond hugo.IsDevelopment "linked" "none") - }} - {{- with . | css.Build $opts }} - {{- if hugo.IsDevelopment }} - - {{- else }} - {{- with . | fingerprint }} - - {{- end }} - {{- end }} - {{- end }} -{{- end }} diff --git a/themes/kvog/layouts/_partials/head/js.html b/themes/kvog/layouts/_partials/head/js.html deleted file mode 100644 index 0210efa..0000000 --- a/themes/kvog/layouts/_partials/head/js.html +++ /dev/null @@ -1,15 +0,0 @@ -{{- with resources.Get "js/main.js" }} - {{- $opts := dict - "minify" (cond hugo.IsDevelopment false true) - "sourceMap" (cond hugo.IsDevelopment "linked" "none") - }} - {{- with . | js.Build $opts }} - {{- if hugo.IsDevelopment }} - - {{- else }} - {{- with . | fingerprint }} - - {{- end }} - {{- end }} - {{- end }} -{{- end }} diff --git a/themes/kvog/layouts/_partials/header.html b/themes/kvog/layouts/_partials/header.html deleted file mode 100644 index 0d3b144..0000000 --- a/themes/kvog/layouts/_partials/header.html +++ /dev/null @@ -1,4 +0,0 @@ -{{ if .IsHome }} -

{{ site.Title }}

-{{ end }} -{{ partial "menu.html" (dict "menuID" "main" "page" .) }} diff --git a/themes/kvog/layouts/_partials/menu.html b/themes/kvog/layouts/_partials/menu.html deleted file mode 100644 index 14245b5..0000000 --- a/themes/kvog/layouts/_partials/menu.html +++ /dev/null @@ -1,51 +0,0 @@ -{{- /* -Renders a menu for the given menu ID. - -@context {page} page The current page. -@context {string} menuID The menu ID. - -@example: {{ partial "menu.html" (dict "menuID" "main" "page" .) }} -*/}} - -{{- $page := .page }} -{{- $menuID := .menuID }} - -{{- with index site.Menus $menuID }} - -{{- end }} - -{{- define "_partials/inline/menu/walk.html" }} - {{- $page := .page }} - {{- range .menuEntries }} - {{- $attrs := dict "href" .URL }} - {{- if $page.IsMenuCurrent .Menu . }} - {{- $attrs = merge $attrs (dict "class" "active" "aria-current" "page") }} - {{- else if $page.HasMenuCurrent .Menu .}} - {{- $attrs = merge $attrs (dict "class" "ancestor" "aria-current" "true") }} - {{- end }} - {{- $name := .Name }} - {{- with .Identifier }} - {{- with T . }} - {{- $name = . }} - {{- end }} - {{- end }} -
  • - {{ $name }} - {{- with .Children }} - - {{- end }} -
  • - {{- end }} -{{- end }} diff --git a/themes/kvog/layouts/_partials/terms.html b/themes/kvog/layouts/_partials/terms.html deleted file mode 100644 index 8a6ebec..0000000 --- a/themes/kvog/layouts/_partials/terms.html +++ /dev/null @@ -1,23 +0,0 @@ -{{- /* -For a given taxonomy, renders a list of terms assigned to the page. - -@context {page} page The current page. -@context {string} taxonomy The taxonomy. - -@example: {{ partial "terms.html" (dict "taxonomy" "tags" "page" .) }} -*/}} - -{{- $page := .page }} -{{- $taxonomy := .taxonomy }} - -{{- with $page.GetTerms $taxonomy }} - {{- $label := (index . 0).Parent.LinkTitle }} -
    -
    {{ $label }}:
    - -
    -{{- end }} diff --git a/themes/kvog/layouts/baseof.html b/themes/kvog/layouts/baseof.html deleted file mode 100644 index 7d17aa5..0000000 --- a/themes/kvog/layouts/baseof.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - {{ partial "head.html" . }} - - -
    - {{ partial "header.html" . }} -
    -
    - {{ block "main" . }}{{ end }} -
    - - - diff --git a/themes/kvog/layouts/home.html b/themes/kvog/layouts/home.html deleted file mode 100644 index 29ea96b..0000000 --- a/themes/kvog/layouts/home.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - 🦍 - diff --git a/themes/kvog/layouts/page.html b/themes/kvog/layouts/page.html deleted file mode 100644 index 7e286c8..0000000 --- a/themes/kvog/layouts/page.html +++ /dev/null @@ -1,10 +0,0 @@ -{{ define "main" }} -

    {{ .Title }}

    - - {{ $dateMachine := .Date | time.Format "2006-01-02T15:04:05-07:00" }} - {{ $dateHuman := .Date | time.Format ":date_long" }} - - - {{ .Content }} - {{ partial "terms.html" (dict "taxonomy" "tags" "page" .) }} -{{ end }} diff --git a/themes/kvog/layouts/section.html b/themes/kvog/layouts/section.html deleted file mode 100644 index bb7ac54..0000000 --- a/themes/kvog/layouts/section.html +++ /dev/null @@ -1,18 +0,0 @@ -{{ define "main" }} - {{ .Content }} - - {{ range .Pages }} - - - - {{ end }} -
    {{ .LinkTitle }}
    - -{{ end }} diff --git a/themes/kvog/layouts/taxonomy.html b/themes/kvog/layouts/taxonomy.html deleted file mode 100644 index c2e7875..0000000 --- a/themes/kvog/layouts/taxonomy.html +++ /dev/null @@ -1,7 +0,0 @@ -{{ define "main" }} -

    {{ .Title }}

    - {{ .Content }} - {{ range .Pages }} -

    {{ .LinkTitle }}

    - {{ end }} -{{ end }} diff --git a/themes/kvog/layouts/term.html b/themes/kvog/layouts/term.html deleted file mode 100644 index c2e7875..0000000 --- a/themes/kvog/layouts/term.html +++ /dev/null @@ -1,7 +0,0 @@ -{{ define "main" }} -

    {{ .Title }}

    - {{ .Content }} - {{ range .Pages }} -

    {{ .LinkTitle }}

    - {{ end }} -{{ end }} diff --git a/themes/kvog/static/favicon.ico b/themes/kvog/static/favicon.ico deleted file mode 100644 index 67f8b77..0000000 Binary files a/themes/kvog/static/favicon.ico and /dev/null differ -- cgit v1.2.3