From 386bc1ac61aa3c233e6127039e4715134785323f Mon Sep 17 00:00:00 2001 From: Thomas Sindt Date: Mon, 15 Jun 2026 19:51:40 +0200 Subject: [PATCH] =?UTF-8?q?Aufr=C3=A4umen?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- northsidestudio/content/_index.md | 2 - northsidestudio/content/pages/_index.md | 2 + .../themes/basic/layouts/_partials/menu.html | 51 ------------------- .../themes/basic/layouts/_partials/terms.html | 23 --------- .../themes/basic/layouts/baseof.html | 2 +- .../themes/basic/layouts/home.html | 9 ---- .../themes/basic/layouts/page.html | 10 ---- .../themes/basic/layouts/section.html | 10 ---- .../themes/basic/layouts/taxonomy.html | 7 --- .../themes/basic/layouts/term.html | 7 --- 10 files changed, 3 insertions(+), 120 deletions(-) create mode 100644 northsidestudio/content/pages/_index.md delete mode 100644 northsidestudio/themes/basic/layouts/_partials/menu.html delete mode 100644 northsidestudio/themes/basic/layouts/_partials/terms.html delete mode 100644 northsidestudio/themes/basic/layouts/home.html delete mode 100644 northsidestudio/themes/basic/layouts/page.html delete mode 100644 northsidestudio/themes/basic/layouts/section.html delete mode 100644 northsidestudio/themes/basic/layouts/taxonomy.html delete mode 100644 northsidestudio/themes/basic/layouts/term.html diff --git a/northsidestudio/content/_index.md b/northsidestudio/content/_index.md index 36334ee..7614f1d 100644 --- a/northsidestudio/content/_index.md +++ b/northsidestudio/content/_index.md @@ -1,5 +1,3 @@ -![The Nothside Studio](/images/NSS_middle.png) - If you want real content from real people, look her! We don't use AI for content creation. Imperfection to the perfect. We love the imperfect. The Northside Studio stands for Audio/Music projects on Tape, vinyl or CD (maybe mp3). No streaming. Real media for real people, who buy media to own them. diff --git a/northsidestudio/content/pages/_index.md b/northsidestudio/content/pages/_index.md new file mode 100644 index 0000000..88b97b5 --- /dev/null +++ b/northsidestudio/content/pages/_index.md @@ -0,0 +1,2 @@ +# Test + diff --git a/northsidestudio/themes/basic/layouts/_partials/menu.html b/northsidestudio/themes/basic/layouts/_partials/menu.html deleted file mode 100644 index 14245b5..0000000 --- a/northsidestudio/themes/basic/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/northsidestudio/themes/basic/layouts/_partials/terms.html b/northsidestudio/themes/basic/layouts/_partials/terms.html deleted file mode 100644 index 8a6ebec..0000000 --- a/northsidestudio/themes/basic/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/northsidestudio/themes/basic/layouts/baseof.html b/northsidestudio/themes/basic/layouts/baseof.html index e91e250..3bfa143 100644 --- a/northsidestudio/themes/basic/layouts/baseof.html +++ b/northsidestudio/themes/basic/layouts/baseof.html @@ -17,6 +17,6 @@ {{ partial "footer.html" . }} - + diff --git a/northsidestudio/themes/basic/layouts/home.html b/northsidestudio/themes/basic/layouts/home.html deleted file mode 100644 index 0c76425..0000000 --- a/northsidestudio/themes/basic/layouts/home.html +++ /dev/null @@ -1,9 +0,0 @@ -{{ define "main" }} - {{ .Content }} - {{ range site.RegularPages }} -
    -

    {{ .LinkTitle }}

    - {{ .Summary }} -
    - {{ end }} -{{ end }} diff --git a/northsidestudio/themes/basic/layouts/page.html b/northsidestudio/themes/basic/layouts/page.html deleted file mode 100644 index 7e286c8..0000000 --- a/northsidestudio/themes/basic/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/northsidestudio/themes/basic/layouts/section.html b/northsidestudio/themes/basic/layouts/section.html deleted file mode 100644 index 748f2f5..0000000 --- a/northsidestudio/themes/basic/layouts/section.html +++ /dev/null @@ -1,10 +0,0 @@ -{{ define "main" }} -

    {{ .Title }}

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

    {{ .LinkTitle }}

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

    {{ .Title }}

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

    {{ .LinkTitle }}

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

    {{ .Title }}

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

    {{ .LinkTitle }}

    - {{ end }} -{{ end }}