diff options
Diffstat (limited to 'themes/kvog/layouts')
| -rw-r--r-- | themes/kvog/layouts/_partials/footer.html | 1 | ||||
| -rw-r--r-- | themes/kvog/layouts/_partials/head.html | 5 | ||||
| -rw-r--r-- | themes/kvog/layouts/_partials/head/css.html | 15 | ||||
| -rw-r--r-- | themes/kvog/layouts/_partials/head/js.html | 15 | ||||
| -rw-r--r-- | themes/kvog/layouts/_partials/header.html | 4 | ||||
| -rw-r--r-- | themes/kvog/layouts/_partials/menu.html | 51 | ||||
| -rw-r--r-- | themes/kvog/layouts/_partials/terms.html | 23 | ||||
| -rw-r--r-- | themes/kvog/layouts/baseof.html | 17 | ||||
| -rw-r--r-- | themes/kvog/layouts/home.html | 17 | ||||
| -rw-r--r-- | themes/kvog/layouts/page.html | 10 | ||||
| -rw-r--r-- | themes/kvog/layouts/section.html | 18 | ||||
| -rw-r--r-- | themes/kvog/layouts/taxonomy.html | 7 | ||||
| -rw-r--r-- | themes/kvog/layouts/term.html | 7 |
13 files changed, 0 insertions, 190 deletions
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 @@ -<p>Copyright {{ now.Year }}. All rights reserved.</p> 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 @@ -<meta charset="utf-8"> -<meta name="viewport" content="width=device-width"> -<title>{{ if .IsHome }}{{ site.Title }}{{ else }}{{ printf "%s | %s" .Title site.Title }}{{ end }}</title> -{{ 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 }} - <link rel="stylesheet" href="{{ .RelPermalink }}"> - {{- else }} - {{- with . | fingerprint }} - <link rel="stylesheet" href="{{ .RelPermalink }}" integrity="{{ .Data.Integrity }}" crossorigin="anonymous"> - {{- 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 }} - <script src="{{ .RelPermalink }}"></script> - {{- else }} - {{- with . | fingerprint }} - <script src="{{ .RelPermalink }}" integrity="{{ .Data.Integrity }}" crossorigin="anonymous"></script> - {{- 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 }} -<h1>{{ site.Title }}</h1> -{{ 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 }} - <nav> - <ul> - {{- partial "inline/menu/walk.html" (dict "page" $page "menuEntries" .) }} - </ul> - </nav> -{{- 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 }} - <li> - <a - {{- range $k, $v := $attrs }} - {{- with $v }} - {{- printf " %s=%q" $k $v | safeHTMLAttr }} - {{- end }} - {{- end -}} - >{{ $name }}</a> - {{- with .Children }} - <ul> - {{- partial "inline/menu/walk.html" (dict "page" $page "menuEntries" .) }} - </ul> - {{- end }} - </li> - {{- 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 }} - <div> - <div>{{ $label }}:</div> - <ul> - {{- range . }} - <li><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></li> - {{- end }} - </ul> - </div> -{{- 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 @@ -<!DOCTYPE html> -<html lang="{{ site.Language.Locale }}" dir="{{ or site.Language.Direction `ltr` }}"> -<head> - {{ partial "head.html" . }} -</head> -<body> - <header> - {{ partial "header.html" . }} - </header> - <main> - {{ block "main" . }}{{ end }} - </main> - <footer> - {{ partial "footer.html" . }} - </footer> -</body> -</html> 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 @@ -<!-- -{{ define "main" }} - {{ .Content }} - {{ range site.RegularPages }} - <section> - <h2><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h2> - {{ .Summary }} - </section> - {{ end }} -{{ end }} ---> -<html> - <head> - <meta charset="UTF-8"> - </head> - <marquee>🦍</marquee> -</html> 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" }} - <h1>{{ .Title }}</h1> - - {{ $dateMachine := .Date | time.Format "2006-01-02T15:04:05-07:00" }} - {{ $dateHuman := .Date | time.Format ":date_long" }} - <time datetime="{{ $dateMachine }}">{{ $dateHuman }}</time> - - {{ .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 }} - <table> - {{ range .Pages }} - <tr> - <td><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></td> - </tr> - {{ end }} - </table> - <!-- - {{ range .Pages }} - <section> - <h2><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h2> - {{ .Summary }} - </section> - {{ end }} - --> -{{ 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" }} - <h1>{{ .Title }}</h1> - {{ .Content }} - {{ range .Pages }} - <h2><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h2> - {{ 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" }} - <h1>{{ .Title }}</h1> - {{ .Content }} - {{ range .Pages }} - <h2><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h2> - {{ end }} -{{ end }} |