- {{ end }}
- {{/* Hugo uses Go's date formatting is set by example. Here are two formats */}}
-
-
- {{/*
- Show "reading time" and "word count" but only if one of the following are true:
- 1) A global config `params` value is set `show_reading_time = true`
- 2) A section front matter value is set `show_reading_time = true`
- 3) A page front matter value is set `show_reading_time = true`
- */}}
- {{ if (or (eq (.Param "show_reading_time") true) (eq $section.Params.show_reading_time true) )}}
- - {{ .ReadingTime}} minutes read
- - {{ .WordCount}} words
- {{ end }}
-
-
- {{ range $value.Pages }}
- {{ partial "summary.html" . }}
- {{ end }}
- {{ end }}
-
-
-{{ end }}
diff --git a/themes/ananke/layouts/index.html b/themes/ananke/layouts/index.html
deleted file mode 100755
index 148525e..0000000
--- a/themes/ananke/layouts/index.html
+++ /dev/null
@@ -1,55 +0,0 @@
-{{ define "main" }}
-
- {{ .Content }}
-
- {{/* Define a section to pull recent posts from. For Hugo 0.20 this will default to the section with the most number of pages. */}}
- {{ $mainSections := .Site.Params.mainSections | default (slice "post") }}
- {{/* Create a variable with that section to use in multiple places. */}}
- {{ $section := where .Site.RegularPages "Section" "in" $mainSections }}
- {{/* Check to see if the section is defined for ranging through it */}}
- {{ $section_count := len $section }}
- {{ if ge $section_count 1 }}
- {{/* Derive the section name */}}
- {{ $section_name := index (.Site.Params.mainSections) 0 }}
-
-
- {{/* Use $section_name to get the section title. Use "with" to only show it if it exists */}}
- {{ with .Site.GetPage "section" $section_name }}
-
- {{ end }}
-
- {{ $n_posts := $.Param "recent_posts_number" | default 3 }}
-
-
- {{/* Range through the first $n_posts items of the section */}}
- {{ range (first $n_posts $section) }}
-
- {{ partial "summary-with-image.html" . }}
-
- {{ end }}
-
-
- {{ if ge $section_count (add $n_posts 1) }}
-
-
{{ i18n "more" }}
- {{/* Now, range through the next four after the initial $n_posts items. Nest the requirements, "after" then "first" on the outside */}}
- {{ range (first 4 (after $n_posts $section)) }}
-
- {{ end }}
-
- {{/* As above, Use $section_name to get the section title, and URL. Use "with" to only show it if it exists */}}
- {{ with .Site.GetPage "section" $section_name }}
- {{ i18n "allTitle" . }}
- {{ end }}
-
- {{ end }}
-
-
- {{ end }}
-{{ end }}
diff --git a/themes/ananke/layouts/page/single.html b/themes/ananke/layouts/page/single.html
deleted file mode 100644
index ac9d199..0000000
--- a/themes/ananke/layouts/page/single.html
+++ /dev/null
@@ -1,18 +0,0 @@
-{{ define "header" }}{{ partial "page-header.html" . }}{{ end }}
-{{ define "main" }}
-
-
-
-
- {{ humanize .Section | upper }}
-
-
- {{ .Title }}
-
-
-
- {{ .Content }}
-
-
-
-{{ end }}
diff --git a/themes/ananke/layouts/partials/commento.html b/themes/ananke/layouts/partials/commento.html
deleted file mode 100644
index 54e7589..0000000
--- a/themes/ananke/layouts/partials/commento.html
+++ /dev/null
@@ -1,2 +0,0 @@
-
-
diff --git a/themes/ananke/layouts/partials/func/GetFeaturedImage.html b/themes/ananke/layouts/partials/func/GetFeaturedImage.html
deleted file mode 100644
index 3c0d5de..0000000
--- a/themes/ananke/layouts/partials/func/GetFeaturedImage.html
+++ /dev/null
@@ -1,35 +0,0 @@
-{{/*
- GetFeaturedImage
-
- This partial gets the url for featured image for a given page.
-
- If a featured_image was set in the page's front matter, then that will be used.
-
- If not set, this will search page resources to find an image that contains the word
- "cover", and if found, returns the path to that resource.
-
- If no featured_image was set, and there's no "cover" image in page resources, then
- this partial returns an empty string (which evaluates to false).
-
- @return Permalink to featured image, or an empty string if not found.
-
-*/}}
-
-{{/* Declare a new string variable, $linkToCover */}}
-{{ $linkToCover := "" }}
-
-{{/* Use the value from front matter if present */}}
-{{ if .Params.featured_image }}
- {{ $linkToCover = .Params.featured_image }}
-
-{{/* Find the first image with 'cover' in the name in this page bundle. */}}
-{{ else }}
- {{ $img := (.Resources.ByType "image").GetMatch "*cover*" }}
- {{ with $img }}
- {{ $linkToCover = .Permalink }}
- {{ end }}
-{{ end }}
-
-{{/* return either a permalink, or an empty string. Note that partials can only have a single
-return statement, so this needs to be at the end of the partial (and not in the if block) */}}
-{{ return $linkToCover }}
\ No newline at end of file
diff --git a/themes/ananke/layouts/partials/head-additions.html b/themes/ananke/layouts/partials/head-additions.html
deleted file mode 100644
index e69de29..0000000
diff --git a/themes/ananke/layouts/partials/i18nlist.html b/themes/ananke/layouts/partials/i18nlist.html
deleted file mode 100644
index ba7c1ea..0000000
--- a/themes/ananke/layouts/partials/i18nlist.html
+++ /dev/null
@@ -1,10 +0,0 @@
-{{ if .IsTranslated }}
-
-{{ end }}
diff --git a/themes/ananke/layouts/partials/menu-contextual.html b/themes/ananke/layouts/partials/menu-contextual.html
deleted file mode 100644
index ae50dc6..0000000
--- a/themes/ananke/layouts/partials/menu-contextual.html
+++ /dev/null
@@ -1,33 +0,0 @@
-{{/*
- Use Hugo's native Table of contents feature. You must set `toc: true` in your parameters for this to show.
- https://gohugo.io/content-management/toc/
-*/}}
-
-{{- if .Params.toc -}}
-
-
{{ i18n "whatsInThis" . }}
- {{ .TableOfContents }}
-
-{{- end -}}
-
-{{/*
- Use Hugo's native related content feature to pull in content that may have similar parameters, like tags. etc.
- https://gohugo.io/content-management/related/
-*/}}
-
-{{ $related := .Site.RegularPages.Related . | first 15 }}
-
-{{ with $related }}
-
- {{ if $featured_image }}
- {{/* Trimming the slash and adding absURL make sure the image works no matter where our site lives */}}
- {{ $featured_image := (trim $featured_image "/") | absURL }}
-
diff --git a/themes/ananke/layouts/post/list.html b/themes/ananke/layouts/post/list.html
deleted file mode 100644
index 73c9b5c..0000000
--- a/themes/ananke/layouts/post/list.html
+++ /dev/null
@@ -1,21 +0,0 @@
-{{ define "main" }}
-{{/*
- This template is the same as the default and is here to demonstrate that if you have a content directory called "post" you can create a layouts directory, just for that section.
- */}}
-
-
- {{ .Content }}
-
-
- {{ template "_internal/pagination.html" . }}
-
-{{ end }}
diff --git a/themes/ananke/layouts/post/summary-with-image.html b/themes/ananke/layouts/post/summary-with-image.html
deleted file mode 100644
index 3afac67..0000000
--- a/themes/ananke/layouts/post/summary-with-image.html
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
-