From 6166cf8e4008b7d64053655f4093d0870a54ace1 Mon Sep 17 00:00:00 2001
From: gabriel giovanini <1408882-gabrielgio@users.noreply.gitlab.com>
Date: Wed, 23 Mar 2022 20:08:49 +0000
Subject: feat: Remove unused theme
---
themes/ananke/layouts/_default/baseof.html | 57 ------------------------
themes/ananke/layouts/_default/list.html | 15 -------
themes/ananke/layouts/_default/single.html | 66 ----------------------------
themes/ananke/layouts/_default/taxonomy.html | 16 -------
themes/ananke/layouts/_default/terms.html | 22 ----------
5 files changed, 176 deletions(-)
delete mode 100755 themes/ananke/layouts/_default/baseof.html
delete mode 100755 themes/ananke/layouts/_default/list.html
delete mode 100755 themes/ananke/layouts/_default/single.html
delete mode 100644 themes/ananke/layouts/_default/taxonomy.html
delete mode 100644 themes/ananke/layouts/_default/terms.html
(limited to 'themes/ananke/layouts/_default')
diff --git a/themes/ananke/layouts/_default/baseof.html b/themes/ananke/layouts/_default/baseof.html
deleted file mode 100755
index ff53aa9..0000000
--- a/themes/ananke/layouts/_default/baseof.html
+++ /dev/null
@@ -1,57 +0,0 @@
-
-
-
-
-
- {{/* NOTE: the Site's title, and if there is a page title, that is set too */}}
- {{ block "title" . }}{{ with .Params.Title }}{{ . }} | {{ end }}{{ .Site.Title }}{{ end }}
-
- {{ hugo.Generator }}
- {{/* NOTE: For Production make sure you add `HUGO_ENV="production"` before your build command */}}
- {{ if eq (getenv "HUGO_ENV") "production" | or (eq .Site.Params.env "production") }}
-
- {{ else }}
-
- {{ end }}
-
- {{ $stylesheet := .Site.Data.webpack_assets.app }}
- {{ with $stylesheet.css }}
-
- {{ end }}
-
- {{ range .Site.Params.custom_css }}
-
- {{ end }}
-
- {{ block "favicon" . }}
- {{ partialCached "site-favicon.html" . }}
- {{ end }}
-
- {{ if .OutputFormats.Get "RSS" }}
- {{ with .OutputFormats.Get "RSS" }}
-
-
- {{ end }}
- {{ end }}
-
- {{/* NOTE: These Hugo Internal Templates can be found starting at https://github.com/spf13/hugo/blob/master/tpl/tplimpl/template_embedded.go#L158 */}}
- {{- template "_internal/opengraph.html" . -}}
- {{- template "_internal/schema.html" . -}}
- {{- template "_internal/twitter_cards.html" . -}}
-
- {{ if eq (getenv "HUGO_ENV") "production" | or (eq .Site.Params.env "production") }}
- {{ template "_internal/google_analytics_async.html" . }}
- {{ end }}
- {{ block "head" . }}{{ partial "head-additions.html" }}{{ end }}
-
-
-
-
- {{ block "header" . }}{{ partial "site-header.html" .}}{{ end }}
-
- {{ block "main" . }}{{ end }}
-
- {{ block "footer" . }}{{ partialCached "site-footer.html" . }}{{ end }}
- {{ block "scripts" . }}{{ partialCached "site-scripts.html" . }}{{ end }}
-
-
diff --git a/themes/ananke/layouts/_default/list.html b/themes/ananke/layouts/_default/list.html
deleted file mode 100755
index 130a357..0000000
--- a/themes/ananke/layouts/_default/list.html
+++ /dev/null
@@ -1,15 +0,0 @@
-{{ define "main" }}
-
-
-
- {{ range .Paginator.Pages }}
-
- {{- partial "summary.html" . -}}
-
- {{ end }}
-
- {{- template "_internal/pagination.html" . -}}
-
-{{ end }}
diff --git a/themes/ananke/layouts/_default/single.html b/themes/ananke/layouts/_default/single.html
deleted file mode 100755
index e63f129..0000000
--- a/themes/ananke/layouts/_default/single.html
+++ /dev/null
@@ -1,66 +0,0 @@
-{{ define "header" }}
- {{/* We can override any block in the baseof file be defining it in the template */}}
- {{ partial "page-header.html" . }}
-{{ end }}
-
-{{ define "main" }}
- {{ $section := .Site.GetPage "section" .Section }}
-
-
-
- {{- .Content -}}
- {{- partial "tags.html" . -}}
-
- {{ if .Site.DisqusShortname }}
- {{ template "_internal/disqus.html" . }}
- {{ end }}
- {{ if .Site.Params.commentoEnable }}
- {{- partial "commento.html" . -}}
- {{ end }}
-
-
-
-
- {{- partial "menu-contextual.html" . -}}
-
-
-
-{{ end }}
diff --git a/themes/ananke/layouts/_default/taxonomy.html b/themes/ananke/layouts/_default/taxonomy.html
deleted file mode 100644
index 1dc0ff2..0000000
--- a/themes/ananke/layouts/_default/taxonomy.html
+++ /dev/null
@@ -1,16 +0,0 @@
-{{ define "main" }}
-
-
-
{{i18n "taxonomyPageList" .}}
-
-
-
-
- {{ range .Pages }}
-
- {{ partial "summary.html" . }}
-
- {{ end }}
-
-
-{{ end }}
diff --git a/themes/ananke/layouts/_default/terms.html b/themes/ananke/layouts/_default/terms.html
deleted file mode 100644
index 87275c7..0000000
--- a/themes/ananke/layouts/_default/terms.html
+++ /dev/null
@@ -1,22 +0,0 @@
-{{ define "main" }}
- {{ $data := .Data }}
-
-
- {{ .Content }}
-
-
-
-
- {{ range $key, $value := .Data.Terms }}
-
- {{ range $value.Pages }}
- {{ partial "summary.html" . }}
- {{ end }}
- {{ end }}
-
-
-{{ end }}
--
cgit v1.2.3