summaryrefslogtreecommitdiff
path: root/themes/neonxp/layouts/_partials
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--themes/neonxp/layouts/_partials/footer.html1
-rw-r--r--themes/neonxp/layouts/_partials/head.html12
-rw-r--r--themes/neonxp/layouts/_partials/head/css.html27
-rw-r--r--themes/neonxp/layouts/_partials/head/js.html16
-rw-r--r--themes/neonxp/layouts/_partials/header.html2
-rw-r--r--themes/neonxp/layouts/_partials/menu.html50
-rw-r--r--themes/neonxp/layouts/_partials/terms.html29
7 files changed, 0 insertions, 137 deletions
diff --git a/themes/neonxp/layouts/_partials/footer.html b/themes/neonxp/layouts/_partials/footer.html
deleted file mode 100644
index 2c30eaa..0000000
--- a/themes/neonxp/layouts/_partials/footer.html
+++ /dev/null
@@ -1 +0,0 @@
-<p>&copy; 2007 — {{ now.Year }} Александр NeonXP Кирюхин. <a href="mailto:i@neonxp.ru">i@neonxp.ru</a></p> \ No newline at end of file
diff --git a/themes/neonxp/layouts/_partials/head.html b/themes/neonxp/layouts/_partials/head.html
deleted file mode 100644
index 7826e2a..0000000
--- a/themes/neonxp/layouts/_partials/head.html
+++ /dev/null
@@ -1,12 +0,0 @@
-<meta charset="utf-8" />
-<meta name="viewport" content="width=device-width, initial-scale=1" />
-<link rel="icon" href="/favicon.ico" type="image/x-icon">
-{{ partial "opengraph.html" . }}
-<title>
- {{ if .IsHome }}
- {{ site.Title }}
- {{ else }}
- {{ printf "%s | %s" .Title site.Title }}
- {{ end }}
-</title>
-{{ partialCached "head/css.html" . }} {{ partialCached "head/js.html" . }} \ No newline at end of file
diff --git a/themes/neonxp/layouts/_partials/head/css.html b/themes/neonxp/layouts/_partials/head/css.html
deleted file mode 100644
index 9324758..0000000
--- a/themes/neonxp/layouts/_partials/head/css.html
+++ /dev/null
@@ -1,27 +0,0 @@
-{{- with resources.Get "css/reset.css" }}
-{{- if hugo.IsDevelopment }}
-<link rel="stylesheet" href="{{ .RelPermalink }}">
-{{- else }}
-{{- with . | minify | fingerprint }}
-<link rel="stylesheet" href="{{ .RelPermalink }}" integrity="{{ .Data.Integrity }}" crossorigin="anonymous">
-{{- end }}
-{{- end }}
-{{- end }}
-{{- with resources.Get "css/paper.css" }}
-{{- if hugo.IsDevelopment }}
-<link rel="stylesheet" href="{{ .RelPermalink }}">
-{{- else }}
-{{- with . | minify | fingerprint }}
-<link rel="stylesheet" href="{{ .RelPermalink }}" integrity="{{ .Data.Integrity }}" crossorigin="anonymous">
-{{- end }}
-{{- end }}
-{{- end }}
-{{- with resources.Get "css/main.css" }}
-{{- if hugo.IsDevelopment }}
-<link rel="stylesheet" href="{{ .RelPermalink }}">
-{{- else }}
-{{- with . | minify | fingerprint }}
-<link rel="stylesheet" href="{{ .RelPermalink }}" integrity="{{ .Data.Integrity }}" crossorigin="anonymous">
-{{- end }}
-{{- end }}
-{{- end }} \ No newline at end of file
diff --git a/themes/neonxp/layouts/_partials/head/js.html b/themes/neonxp/layouts/_partials/head/js.html
deleted file mode 100644
index 1b7c18e..0000000
--- a/themes/neonxp/layouts/_partials/head/js.html
+++ /dev/null
@@ -1,16 +0,0 @@
-<!-- {{- with resources.Get "js/main.js" }}
- {{- $opts := dict
- "minify" (not hugo.IsDevelopment)
- "sourceMap" (cond hugo.IsDevelopment "external" "")
- "targetPath" "js/main.js"
- }}
- {{- 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 }} --> \ No newline at end of file
diff --git a/themes/neonxp/layouts/_partials/header.html b/themes/neonxp/layouts/_partials/header.html
deleted file mode 100644
index 7980a00..0000000
--- a/themes/neonxp/layouts/_partials/header.html
+++ /dev/null
@@ -1,2 +0,0 @@
-<h1>{{ site.Title }}</h1>
-{{ partial "menu.html" (dict "menuID" "main" "page" .) }}
diff --git a/themes/neonxp/layouts/_partials/menu.html b/themes/neonxp/layouts/_partials/menu.html
deleted file mode 100644
index ebad53f..0000000
--- a/themes/neonxp/layouts/_partials/menu.html
+++ /dev/null
@@ -1,50 +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 -}}>
- {{if .Pre}}
- {{.Pre}}
- {{end}}
- {{ $name }}
- </a>
- {{- with .Children }}
- <ul>
- {{- partial "inline/menu/walk.html" (dict "page" $page "menuEntries" .) }}
- </ul>
- {{- end }}
-</li>
-{{- end }}
-{{- end }} \ No newline at end of file
diff --git a/themes/neonxp/layouts/_partials/terms.html b/themes/neonxp/layouts/_partials/terms.html
deleted file mode 100644
index b666922..0000000
--- a/themes/neonxp/layouts/_partials/terms.html
+++ /dev/null
@@ -1,29 +0,0 @@
-{{- $page := .page }}
-
-{{- with $page.GetTerms "categories" }}
-{{- if . }}
-{{- $label := (index . 0).Parent.LinkTitle }}
-<div>
- <h3>{{ i18n $label }}:</h3>
- <ul class="taxonomy">
- {{- range . }}
- <li><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></li>
- {{- end }}
- </ul>
-</div>
-{{- end }}
-{{- end }}
-
-{{- with $page.GetTerms "tags" }}
-{{- if . }}
-{{- $label := (index . 0).Parent.LinkTitle }}
-<div>
- <h3>{{ i18n $label }}:</h3>
- <ul class="taxonomy">
- {{- range . }}
- <li><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></li>
- {{- end }}
- </ul>
-</div>
-{{- end }}
-{{- end }} \ No newline at end of file