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 @@ - - 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 }} -