-
- {{- with .Params.thumbnail }}
-
-
diff --git a/blog/themes/hugo-clarity-master/layouts/partials/favicon.html b/blog/themes/hugo-clarity-master/layouts/partials/favicon.html
deleted file mode 100644
index 98bc0ab..0000000
--- a/blog/themes/hugo-clarity-master/layouts/partials/favicon.html
+++ /dev/null
@@ -1,7 +0,0 @@
-{{- $iconsDir := default "icons/" .Site.Params.iconsDir }}
-{{- $appleTouch := absURL (printf "%s%s" $iconsDir "apple-touch-icon.png") }}
-{{- $favicon := absURL (printf "%s%s" $iconsDir "favicon-32x32.png" ) }}
-{{- $manifest := absURL (printf "%s%s" $iconsDir "site.webmanifest" ) }}
-
-
-
diff --git a/blog/themes/hugo-clarity-master/layouts/partials/figure.html b/blog/themes/hugo-clarity-master/layouts/partials/figure.html
deleted file mode 100644
index e5b7afc..0000000
--- a/blog/themes/hugo-clarity-master/layouts/partials/figure.html
+++ /dev/null
@@ -1,75 +0,0 @@
-{{/*
- If Hugo has been able to access the image, it's loaded at .image, and we have
- access to additional attributes.
-
- If Hugo hasn't been able to access the image, it's loaded at .file, with only
- its path available.
-
- We set the Hugo variables to strings to allow for logical operations and
- replacements.
-*/}}
-
-{{- $file := .file -}}
-{{- $image := .image -}}
-{{- $diskPath := .diskPath -}}
-{{- $webPath := .webPath -}}
-{{- $alt := .alt -}}
-{{- $cap := .cap -}}
-{{- $classes := .classes -}}
-{{- $bundle := .bundle -}}
-
-{{- $fileWeb := .file -}}
-{{- if eq $bundle true -}}
- {{ $fileWeb = path.Join $webPath $file }}
- {{ if in $classes "image_svg" }}
- {{ if strings.HasPrefix $file "http" }}
- {{ $fileWeb = $file }}
- {{- end -}}
- {{- end -}}
-{{- end -}}
-
-
-
-
- {{/* Generate alternate image format tags. */}}
- {{- with $file -}}
- {{ $name := replace $file (path.Ext $file) "" }}
- {{ $ext := slice "avif" "webp" "jxl" }}
- {{- range $ext -}}
- {{ $item := printf "%s" . | printf "%s%s" "." | printf "%s%s" $name | printf "%s" }}
- {{ $itemDisk := path.Join $diskPath $item }}
- {{ $itemWeb := path.Join $webPath $item }}
- {{- if fileExists $itemDisk -}}
-
- {{- end -}}
- {{- end -}}
- {{- end -}}
-
- {{/* Render image and attributes. */}}
-
-
- {{/* Provide caption based on image title, if it is set. */}}
- {{- with $cap -}}
- {{- if not (eq $cap " ") -}}
- {{ $cap | safeHTML }}
- {{- end -}}
- {{- end -}}
-
-
-
diff --git a/blog/themes/hugo-clarity-master/layouts/partials/follow.html b/blog/themes/hugo-clarity-master/layouts/partials/follow.html
deleted file mode 100644
index 9e312ec..0000000
--- a/blog/themes/hugo-clarity-master/layouts/partials/follow.html
+++ /dev/null
@@ -1,23 +0,0 @@
-{{- $base := absURL "" }}
-{{- $items := .Site.Data.social }}
-{{- $social := .Site.Menus.social }}
-{{- with $social }}
- {{- $items = . }}
-{{- end }}
-
- {{- range $items }}
- {{- $url := .URL }}
- {{- $label := lower .Name }}
- {{- if eq $social nil }}
- {{ $url = .url }}
- {{ $label = lower .item }}
- {{- end }}
- {{- if and (eq (hasPrefix $url $base) false) (eq (hasPrefix $url "http") false) }}
- {{ $url = absLangURL $url }}
- {{- end }}
-
- {{ partial "sprite" (dict "icon" $label) }}
-
- {{- end }}
- {{- partialCached "mode" . }}
-
diff --git a/blog/themes/hugo-clarity-master/layouts/partials/footer.html b/blog/themes/hugo-clarity-master/layouts/partials/footer.html
deleted file mode 100644
index d1bc945..0000000
--- a/blog/themes/hugo-clarity-master/layouts/partials/footer.html
+++ /dev/null
@@ -1,14 +0,0 @@
-{{- $s := .Site.Params }}
-{{ $t := .Site.Title }}
-{{- if or .Params.enableMathNotation $s.enableMathNotation }}
- {{ partialCached "math" . }}
-{{- end }}
-{{- $iconsDir := default "icons/" .Site.Params.iconsDir }}
-{{- $defaultFooterLogo := printf "%s%s" $iconsDir "apple-touch-icon.png"}}
-
diff --git a/blog/themes/hugo-clarity-master/layouts/partials/func/getCodeBlockSettings.html b/blog/themes/hugo-clarity-master/layouts/partials/func/getCodeBlockSettings.html
deleted file mode 100644
index c4fef58..0000000
--- a/blog/themes/hugo-clarity-master/layouts/partials/func/getCodeBlockSettings.html
+++ /dev/null
@@ -1,25 +0,0 @@
-{{ $s := site.Params }}
-{{ $p := .Params }}
-{{ $maxCodeLines := 100 }}
-{{ with $s.codeMaxLines }}
- {{ $maxCodeLines = . }}
-{{ end }}
-{{ with $p.codeMaxLines }}
- {{ $maxCodeLines = . }}
-{{ end }}
-
-{{ $codeLineNumbers := false }}
-{{ with $s.codeLineNumbers }}
- {{ $codeLineNumbers = . }}
-{{ end }}
-{{ with $p.codeLineNumbers }}
- {{ $codeLineNumbers = . }}
- {{ else }}
- {{ if eq $p.codeLineNumbers false }}
- {{ $codeLineNumbers = false }}
- {{ end }}
-{{ end }}
-
-{{ $config := (dict "max" $maxCodeLines "lines" $codeLineNumbers) }}
-
-{{ return $config }}
diff --git a/blog/themes/hugo-clarity-master/layouts/partials/func/getJavascriptBundle.html b/blog/themes/hugo-clarity-master/layouts/partials/func/getJavascriptBundle.html
deleted file mode 100644
index 2a06e24..0000000
--- a/blog/themes/hugo-clarity-master/layouts/partials/func/getJavascriptBundle.html
+++ /dev/null
@@ -1,26 +0,0 @@
-
-{{ $highlightPath := "js/highlight.js" }}
-{{ $highlight := resources.Get $highlightPath | resources.ExecuteAsTemplate $highlightPath . }}
-
-{{ $variablesScriptPath := "js/variables.js" }}
-{{ $variables := resources.Get $variablesScriptPath | resources.ExecuteAsTemplate (printf "%s/js/variables.js" .Lang) . }}
-
-{{ $functionsScriptPath := "js/functions.js" }}
-{{ $functions := resources.Get $functionsScriptPath | resources.ExecuteAsTemplate $functionsScriptPath . }}
-
-{{ $codeScriptPath := "js/code.js" }}
-{{ $code := resources.Get $codeScriptPath | resources.ExecuteAsTemplate $codeScriptPath . }}
-
-{{ $customScriptPath := "js/custom.js" }}
-{{ if (fileExists "../../assets/js/custom.js") }}
- {{ $customScriptPath := "../../assets/js/custom.js" }}
-{{ end }}
-{{ $custom := resources.Get $customScriptPath | resources.ExecuteAsTemplate $customScriptPath . }}
-
-{{ $mainScriptPath := "js/index.js" }}
-{{ $main := resources.Get $mainScriptPath | resources.ExecuteAsTemplate $mainScriptPath . }}
-
-{{ $bundlePath := (printf "%s/js/bundle.js" .Lang ) }}
-{{ $bundle := slice $highlight $variables $functions $code $main $custom | resources.Concat $bundlePath | resources.Fingerprint "sha512" }}
-
-{{ return $bundle }}
\ No newline at end of file
diff --git a/blog/themes/hugo-clarity-master/layouts/partials/func/getStylesBundle.html b/blog/themes/hugo-clarity-master/layouts/partials/func/getStylesBundle.html
deleted file mode 100644
index e35c4a5..0000000
--- a/blog/themes/hugo-clarity-master/layouts/partials/func/getStylesBundle.html
+++ /dev/null
@@ -1,6 +0,0 @@
-
-{{ $options := (dict "targetPath" "css/styles.css" "outputStyle" "compressed" "enableSourceMap" "true") }}
-{{ $mainSassFile := "sass/main.sass" }}
-{{ $styles := resources.Get $mainSassFile | resources.ExecuteAsTemplate $mainSassFile . | resources.ToCSS $options | resources.Fingerprint "sha512" }}
-
-{{ return $styles }}
\ No newline at end of file
diff --git a/blog/themes/hugo-clarity-master/layouts/partials/head.html b/blog/themes/hugo-clarity-master/layouts/partials/head.html
deleted file mode 100644
index 507d2fa..0000000
--- a/blog/themes/hugo-clarity-master/layouts/partials/head.html
+++ /dev/null
@@ -1,45 +0,0 @@
-{{- $params := site.Params }}
-{{- $separator := default "|" $params.titleSeparator }}
-{{- $title := "" }}
-{{- if and .Title (ne (trim (lower .Site.Title) "") (trim (lower .Title) "")) }}
- {{- if eq .Kind "taxonomy" }}
- {{- $title = default .Title ( T (lower .Title) ) }}
- {{- else }}
- {{- $title = .Title }}
- {{- end }}
-{{- end }}
-
{{ with $title }}{{ . }} {{ $separator }} {{ end }}{{ .Site.Title }}
-
-{{- with $params.ga_verify }}
-
-{{- end }}
-
-
-{{- if (ne hugo.Environment "development") }}
- {{- partialCached "analytics" . }}
-{{- end }}
-{{- partial "opengraph" . }}
-{{- partialCached "favicon" . }}
-
-{{ range .AlternativeOutputFormats -}}
- {{ printf `
` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }}
-{{ end -}}
-
-
-
-{{ $styles := partialCached "func/getStylesBundle" . }}
-
-
-
-{{ $bundle := partialCached "func/getJavascriptBundle" . }}
-
-
-
-
-
-{{- with $params.customCSS }}
- {{- range . -}}
-
- {{- end }}
-{{- end }}
diff --git a/blog/themes/hugo-clarity-master/layouts/partials/hooks/body-end.html b/blog/themes/hugo-clarity-master/layouts/partials/hooks/body-end.html
deleted file mode 100644
index e69de29..0000000
diff --git a/blog/themes/hugo-clarity-master/layouts/partials/hooks/head-end.html b/blog/themes/hugo-clarity-master/layouts/partials/hooks/head-end.html
deleted file mode 100644
index e69de29..0000000
diff --git a/blog/themes/hugo-clarity-master/layouts/partials/icons.html b/blog/themes/hugo-clarity-master/layouts/partials/icons.html
deleted file mode 100644
index f7e02f7..0000000
--- a/blog/themes/hugo-clarity-master/layouts/partials/icons.html
+++ /dev/null
@@ -1,67 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/blog/themes/hugo-clarity-master/layouts/partials/image.html b/blog/themes/hugo-clarity-master/layouts/partials/image.html
deleted file mode 100644
index a5cae3e..0000000
--- a/blog/themes/hugo-clarity-master/layouts/partials/image.html
+++ /dev/null
@@ -1,63 +0,0 @@
-{{- $file := .file -}}
-{{- $imagesDir := .Page.Site.Params.imagesDir -}}
-{{- $alt := .alt -}}
-{{- if not $alt -}}
- {{- $alt = .Text -}}
-{{- end -}}
-{{- $cap := .cap -}}
-{{- $scratch := newScratch -}}
-{{- $scratch.Set "classes" "image_figure" -}}
-
-{{/* Add classes for image type */}}
-{{- $typeClass := "" -}}
-{{- with .type -}}
- {{- $typeClass = printf "%s" . | printf "%s%s" " image_" | printf "%s" -}}
-{{- end -}}
-{{- $scratch.Add "classes" $typeClass -}}
-
-{{/* Determine if page bundles are set. */}}
-{{- $bundle := .Page.Site.Params.usePageBundles -}}
-{{- if eq .Page.Params.usePageBundles false -}}
- {{- $bundle = false -}}
-{{- end -}}
-{{- if eq .Page.Params.usePageBundles true -}}
- {{- $bundle = true -}}
-{{- end -}}
-
-{{/* Determine source of image and get attributes. */}}
-{{- $image := "" -}}
-{{- if strings.HasPrefix $file "http" -}}
- {{- $scratch.Add "classes" " image_external" -}}
- {{- $image = resources.GetRemote $file -}}
- {{- with $image }}
- {{- if eq $image.MediaType.MainType "image" -}}
- {{- if eq $image.MediaType.SubType "svg" -}}
- {{- $image = "" -}}
- {{- $scratch.Add "classes" " image_svg" -}}
- {{- else -}}
- {{- $file = path.Join $imagesDir $image -}}
- {{- $image = $image.Content | resources.FromString $file -}}
- {{- end -}}
- {{- else -}}
- {{- $image = "" -}}
- {{- end -}}
- {{- end -}}
-{{- else -}}
- {{- $scratch.Add "classes" " image_internal" -}}
- {{ $file = (path.Clean $file) }}
- {{- if eq $bundle true -}}
- {{ $image = .Resources.GetMatch $file }}
- {{- end -}}
-{{- end -}}
-
-{{- partial "figure" (
- dict
- "file" $file
- "image" $image
- "diskPath" $.Page.File.Dir
- "webPath" $.Page.RelPermalink
- "alt" $alt
- "cap" $cap
- "classes" ($scratch.Get "classes")
- "bundle" $bundle
-) -}}
diff --git a/blog/themes/hugo-clarity-master/layouts/partials/logo.html b/blog/themes/hugo-clarity-master/layouts/partials/logo.html
deleted file mode 100644
index 730d90d..0000000
--- a/blog/themes/hugo-clarity-master/layouts/partials/logo.html
+++ /dev/null
@@ -1,16 +0,0 @@
-{{- $t := site.Title -}}
-
- {{- with .logo }}
-
- {{- else -}}
- {{- $t -}}
- {{- end }}
- {{- if ne (strings.HasSuffix .class "center") true }}
-
-
- {{- partialCached "sprite" (dict "icon" "open-menu") -}}
- {{- partial "sprite" (dict "icon" "closeme") -}}
-
-
- {{- end }}
-
diff --git a/blog/themes/hugo-clarity-master/layouts/partials/math.html b/blog/themes/hugo-clarity-master/layouts/partials/math.html
deleted file mode 100644
index 999766e..0000000
--- a/blog/themes/hugo-clarity-master/layouts/partials/math.html
+++ /dev/null
@@ -1,3 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/blog/themes/hugo-clarity-master/layouts/partials/mode.html b/blog/themes/hugo-clarity-master/layouts/partials/mode.html
deleted file mode 100644
index cd06508..0000000
--- a/blog/themes/hugo-clarity-master/layouts/partials/mode.html
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
diff --git a/blog/themes/hugo-clarity-master/layouts/partials/nav.html b/blog/themes/hugo-clarity-master/layouts/partials/nav.html
deleted file mode 100644
index 6eb0158..0000000
--- a/blog/themes/hugo-clarity-master/layouts/partials/nav.html
+++ /dev/null
@@ -1,36 +0,0 @@
-{{- $menu := .menu }}
-{{ $menuData := .context.Site.Data.menu }}
-{{- $link := .context.Permalink }}
-{{- $url := "" }}
-{{- $name := "" }}
-{{- $forwardSlash := "/" }}
-{{- $children := false }}
-{{- range $menu }}
- {{- if eq $menu $menuData }}
- {{- $children = .submenu }}
- {{- $name = .name }}
- {{- $url = absURL .link }}
- {{- else }}
- {{- $children = .Children }}
- {{- $name = .Name }}
- {{- $url = absLangURL .URL }}
- {{- end }}
-
-
{{ $name }} {{ with $children }} {{ end }}
- {{- with $children }}
-
-
- {{- range . }}
- {{- if eq $menu $menuData }}
- {{- $name = .name }}
- {{- $url = absURL .link }}
- {{- else }}
- {{- $name = .Name }}
- {{- $url = absLangURL .URL }}
- {{- end }}
-
{{ $name }}
- {{- end }}
-
- {{- end }}
-
-{{- end }}
\ No newline at end of file
diff --git a/blog/themes/hugo-clarity-master/layouts/partials/opengraph.html b/blog/themes/hugo-clarity-master/layouts/partials/opengraph.html
deleted file mode 100644
index cfc2aca..0000000
--- a/blog/themes/hugo-clarity-master/layouts/partials/opengraph.html
+++ /dev/null
@@ -1,105 +0,0 @@
-{{- $summary := truncate 160 .Summary }}
-{{- $s := .Site.Params }}
-{{- $p := .Params }}
-
-{{- $relpath := "" -}}
-{{- if or $s.usePageBundles $p.usePageBundles }}
- {{- $relpath = .Page.RelPermalink -}}
-{{- end }}
-
-{{ if eq $p.usePageBundles false }}
- {{- $relpath = "" }}
-{{ end }}
-
-{{- with $p.description }}
- {{- $summary = truncate 160 . }}
-{{- end }}
-{{- if .IsHome }}
- {{- $summary = $s.description }}
- {{- with $p.description }}
- {{- $summary = . }}
- {{- end }}
-{{- end }}
-{{- $site := .Site.Title }}
-{{- $title := .Title }}
-{{- $permalink := .Permalink }}
-{{- $logo := absURL $s.logo }}
-{{- $author := $s.author }}
-{{- with $p.author }}
- {{ $author := . }}
-{{- end }}
-{{- $image := absURL $s.fallBackOgImage }}
-{{- with $p.featureImage }}
- {{- $fullpath := ( add $relpath . ) -}}
- {{- $image = absURL $fullpath }}
-{{- end }}
-{{- with $p.thumbnail }}
- {{- $fullpath := ( add $relpath . ) -}}
- {{- $image = absURL $fullpath }}
-{{- end }}
-{{- with $p.shareImage }}
- {{- $fullpath := ( add $relpath . ) -}}
- {{- $image = absURL $fullpath }}
-{{- end }}
-
-{{ range .Translations }}
-
-{{ end }}
-{{- if .IsHome }}
-
-{{- else }}
-
-{{- end }}
-
-
-
-
-
-
-
-
-
-{{- $keywords := "" }}
-{{- with $s.keywords }}
- {{- $keywords = delimit $s.keywords "," }}
-{{- end }}
-{{- with $p.keywords }}
- {{- $keywords = delimit . "," }}
-{{- end }}
-{{- with $keywords }}
-
-{{- end }}
-{{- if eq .Section $s.blogDir -}}
- {{- $date := ( .Date.Format "2006-02-01") -}}
- {{- $date := (time .Date) }}
- {{- $lastMod := (time .Lastmod) }}
-
-{{- end }}
diff --git a/blog/themes/hugo-clarity-master/layouts/partials/pager.html b/blog/themes/hugo-clarity-master/layouts/partials/pager.html
deleted file mode 100644
index 3095e70..0000000
--- a/blog/themes/hugo-clarity-master/layouts/partials/pager.html
+++ /dev/null
@@ -1,18 +0,0 @@
-{{- $pager := .Paginator }}
-{{- if gt $pager.TotalPages 1 }}
-
-{{- end }}
diff --git a/blog/themes/hugo-clarity-master/layouts/partials/post-meta.html b/blog/themes/hugo-clarity-master/layouts/partials/post-meta.html
deleted file mode 100644
index e46eb0e..0000000
--- a/blog/themes/hugo-clarity-master/layouts/partials/post-meta.html
+++ /dev/null
@@ -1,39 +0,0 @@
-{{- $showShare := ne (.Param "showshare") false }}
-{{- $showDate := ne (.Param "showdate") false }}
-{{- $showReadTime := ne (.Param "showreadtime") false }}
-{{- $showPostMeta := or ($showShare) ($showDate) ($showReadTime) (isset .Params "tags") }}
-{{- $scratch := newScratch }}
-{{- $scratch.Set "writeSeparator" false }}
-{{- if $showPostMeta }}
-
-{{- end }}
- {{- if $showDate }}
-
{{ partial "sprite" (dict "icon" "calendar") }}
-
- {{ .Date.Format (default "Jan 2, 2006" $.Site.Params.dateFormat) -}}
-
- {{- $scratch.Set "writeSeparator" true }}
- {{- end }}
- {{- if $showReadTime }}
-
{{ if ($scratch.Get "writeSeparator") }} · {{ end }}{{ T "reading_time" . }}
- {{- $scratch.Set "writeSeparator" true }}
- {{- end }}
- {{- with .Params.tags -}}
-
- {{- if ($scratch.Get "writeSeparator") }} · {{ end }}
- {{- range . }}
- {{- $tag := urlize . -}}
-
- {{- . }}
-
- {{- end }}
-
- {{- $scratch.Set "writeSeparator" true }}
- {{- end }}
- {{- if $showShare }}
-
{{ if ($scratch.Get "writeSeparator") }} ·{{ end }}{{ partial "share" . }}
- {{- $scratch.Set "writeSeparator" true }}
- {{- end }}
-{{- if $showPostMeta }}
-
-{{- end }}
diff --git a/blog/themes/hugo-clarity-master/layouts/partials/related.html b/blog/themes/hugo-clarity-master/layouts/partials/related.html
deleted file mode 100644
index 757bcb5..0000000
--- a/blog/themes/hugo-clarity-master/layouts/partials/related.html
+++ /dev/null
@@ -1,9 +0,0 @@
-{{ if isset .Params "series" }}
-{{$related := where .Site.RegularPages ".Params.series" "eq" .Params.series }}
-
Posts in this Series
-
-{{ end }}
diff --git a/blog/themes/hugo-clarity-master/layouts/partials/scripts.html b/blog/themes/hugo-clarity-master/layouts/partials/scripts.html
deleted file mode 100644
index acedf23..0000000
--- a/blog/themes/hugo-clarity-master/layouts/partials/scripts.html
+++ /dev/null
@@ -1,8 +0,0 @@
-{{- $bundle := partialCached "func/getJavascriptBundle" . }}
-
-{{- partial "search/scripts" . }}
-{{- with site.Params.customJS }}
- {{- range . -}}
-
- {{- end }}
-{{- end }}
\ No newline at end of file
diff --git a/blog/themes/hugo-clarity-master/layouts/partials/search/scripts.html b/blog/themes/hugo-clarity-master/layouts/partials/search/scripts.html
deleted file mode 100644
index a93130a..0000000
--- a/blog/themes/hugo-clarity-master/layouts/partials/search/scripts.html
+++ /dev/null
@@ -1,12 +0,0 @@
-{{- $params := site.Params }}
-{{- if $params.enableSearch }}
- {{- $fusePath := "js/fuse.js" }}
- {{- $fuse := resources.Get $fusePath | resources.ExecuteAsTemplate $fusePath . }}
-
- {{- $searchPath := "js/search.js" }}
- {{- $search := resources.Get $searchPath | resources.ExecuteAsTemplate $searchPath . }}
-
- {{- $bundle2 := slice $fuse $search | resources.Concat "js/search.js" | resources.Minify | resources.Fingerprint "sha512" }}
-
-
-{{ end }}
\ No newline at end of file
diff --git a/blog/themes/hugo-clarity-master/layouts/partials/search/widget.html b/blog/themes/hugo-clarity-master/layouts/partials/search/widget.html
deleted file mode 100644
index d5dbdef..0000000
--- a/blog/themes/hugo-clarity-master/layouts/partials/search/widget.html
+++ /dev/null
@@ -1,22 +0,0 @@
-{{- $params := site.Params }}
-{{- if site.Params.enableSearch }}
- {{- $placeholder := T "search_field_placeholder" }}
- {{- $section := $.Page.Section }}
- {{- $simple := true }}
- {{- if and (eq $section "support") (eq .CurrentSection .FirstSection) }}
- {{- else }}
- {{- $placeholder = "Search..." }}
- {{- $simple = false }}
- {{ end }}
-
-
-
- {{- partial "sprite" (dict "icon" "search") }}
-
- {{ if $simple }}
- {{ end }}
- {{- if ne .Params.searchPage true }}
-
- {{- end }}
-
-{{- end }}
diff --git a/blog/themes/hugo-clarity-master/layouts/partials/share.html b/blog/themes/hugo-clarity-master/layouts/partials/share.html
deleted file mode 100644
index 260663c..0000000
--- a/blog/themes/hugo-clarity-master/layouts/partials/share.html
+++ /dev/null
@@ -1,17 +0,0 @@
- {{- $s := T "share_on" }}
-
-
\ No newline at end of file
diff --git a/blog/themes/hugo-clarity-master/layouts/partials/sidebar.html b/blog/themes/hugo-clarity-master/layouts/partials/sidebar.html
deleted file mode 100644
index 17b18b2..0000000
--- a/blog/themes/hugo-clarity-master/layouts/partials/sidebar.html
+++ /dev/null
@@ -1,121 +0,0 @@
-{{ $s := site.Params }}
-
diff --git a/blog/themes/hugo-clarity-master/layouts/partials/sprite.html b/blog/themes/hugo-clarity-master/layouts/partials/sprite.html
deleted file mode 100644
index 2956340..0000000
--- a/blog/themes/hugo-clarity-master/layouts/partials/sprite.html
+++ /dev/null
@@ -1,4 +0,0 @@
-
- {{ .icon }}
-
-
diff --git a/blog/themes/hugo-clarity-master/layouts/partials/top.html b/blog/themes/hugo-clarity-master/layouts/partials/top.html
deleted file mode 100644
index c7825f7..0000000
--- a/blog/themes/hugo-clarity-master/layouts/partials/top.html
+++ /dev/null
@@ -1,3 +0,0 @@
-
- {{ partialCached "sprite" (dict "icon" "to-top") . }}
-
diff --git a/blog/themes/hugo-clarity-master/layouts/partials/utterances.html b/blog/themes/hugo-clarity-master/layouts/partials/utterances.html
deleted file mode 100644
index 280c291..0000000
--- a/blog/themes/hugo-clarity-master/layouts/partials/utterances.html
+++ /dev/null
@@ -1,9 +0,0 @@
-{{ if .Site.Params.utterancesRepo }}
-
- {{ end }}
\ No newline at end of file
diff --git a/blog/themes/hugo-clarity-master/layouts/search/single.html b/blog/themes/hugo-clarity-master/layouts/search/single.html
deleted file mode 100644
index 5c78da7..0000000
--- a/blog/themes/hugo-clarity-master/layouts/search/single.html
+++ /dev/null
@@ -1,5 +0,0 @@
-{{- define "main" }}
-
-{{- end }}
\ No newline at end of file
diff --git a/blog/themes/hugo-clarity-master/layouts/shortcodes/notice.html b/blog/themes/hugo-clarity-master/layouts/shortcodes/notice.html
deleted file mode 100644
index 9ba5014..0000000
--- a/blog/themes/hugo-clarity-master/layouts/shortcodes/notice.html
+++ /dev/null
@@ -1,5 +0,0 @@
-{{ $_hugo_config := `{ "version": 1 }` }}
-
-
{{ .Get 1 }}
- {{ .Inner }}
-
diff --git a/blog/themes/hugo-clarity-master/layouts/shortcodes/openstreetmap.html b/blog/themes/hugo-clarity-master/layouts/shortcodes/openstreetmap.html
deleted file mode 100644
index 64aec5d..0000000
--- a/blog/themes/hugo-clarity-master/layouts/shortcodes/openstreetmap.html
+++ /dev/null
@@ -1,23 +0,0 @@
-{{ $mapName := .Get "mapName" }}
-
-{{ $mapWidth := .Get "mapWidth" | default "100%" }}
-{{ $mapHeight := .Get "mapHeight" | default "600px" }}
-
-{{ $scaleControl := .Get "scaleControl" | default "true" }}
-{{ $miniMap := .Get "miniMap" | default "false" }}
-{{ $scrollWheelZoom := .Get "scrollWheelZoom" | default "true" }}
-{{ $zoomControl := .Get "zoomControl" | default "true" }}
-{{ $allowEdit := .Get "allowEdit" | default "false" }}
-{{ $moreControl := .Get "moreControl" | default "true" }}
-{{ $searchControl := .Get "searchControl" | default "true" }}
-{{ $tilelayersControl := .Get "tilelayersControl" | default "null" }}
-{{ $embedControl := .Get "embedControl" | default "null" }}
-{{ $datalayersControl := .Get "datalayersControl" | default "true" }}
-{{ $onLoadPanel := .Get "onLoadPanel" | default "none" }}
-{{ $captionBar := .Get "captionBar" | default "false" }}
-
-{{ $scale := .Get "scale" }}
-{{ $coordX := .Get "coordX" }}
-{{ $coordY := .Get "coordY" }}
-
-
diff --git a/blog/themes/hugo-clarity-master/layouts/shortcodes/video.html b/blog/themes/hugo-clarity-master/layouts/shortcodes/video.html
deleted file mode 100644
index b87decc..0000000
--- a/blog/themes/hugo-clarity-master/layouts/shortcodes/video.html
+++ /dev/null
@@ -1,8 +0,0 @@
-{{- $youtubeHost := "https://www.youtube.com/watch?v=" }}
-{{- $url := .Get 0 }}
-{{- if in $url $youtubeHost }}
- {{- $url = strings.TrimPrefix $youtubeHost $url }}
-{{- end }}
-
- VIDEO
-
diff --git a/blog/themes/hugo-clarity-master/layouts/shortcodes/youtube.html b/blog/themes/hugo-clarity-master/layouts/shortcodes/youtube.html
deleted file mode 100644
index b87decc..0000000
--- a/blog/themes/hugo-clarity-master/layouts/shortcodes/youtube.html
+++ /dev/null
@@ -1,8 +0,0 @@
-{{- $youtubeHost := "https://www.youtube.com/watch?v=" }}
-{{- $url := .Get 0 }}
-{{- if in $url $youtubeHost }}
- {{- $url = strings.TrimPrefix $youtubeHost $url }}
-{{- end }}
-
- VIDEO
-
diff --git a/blog/themes/hugo-clarity-master/resources/_gen/assets/sass/sass/main.sass_d2bdc985df0e3369a538eb4e858e857f.content b/blog/themes/hugo-clarity-master/resources/_gen/assets/sass/sass/main.sass_d2bdc985df0e3369a538eb4e858e857f.content
deleted file mode 100644
index ae2d8f8..0000000
--- a/blog/themes/hugo-clarity-master/resources/_gen/assets/sass/sass/main.sass_d2bdc985df0e3369a538eb4e858e857f.content
+++ /dev/null
@@ -1,3 +0,0 @@
-html{--color-mode: 'lit';--light: #fff;--dark: #000;--bg: #002538;--haze: #f2f2f2;--gray: #020202;--accent: var(--gray);--text: #575757;--header-text: var(--dark);--font: Metropolis, sans-serif;--theme: #0077b8;--ease: cubic-bezier(.19,1,.22,1);--code-bg: var(--bg);--table-bg: var(--light);--table-haze: var(--haze);--table-border: #dedede;--footer-bg: var(--haze);--shadow: rgba(0,0,0,0.12);--translucent: rgba(0,0,0,0.05);--translucent-light: rgba(255,255,255,0.05);--post-bg: var(--light);--choice-bg: var(--haze);--ease: cubic-bezier(0.39, 0.575, 0.565, 1);--easing: cubic-bezier(.19,1,.22,1)}html.page{--choice-bg: var(--light)}html[data-mode="dim"]{--light: hsla(0,0%,100%,0.87);--color-mode: 'dim';--text: var(--light);--accent: var(--bubble);--choice-bg: var(--bg);--code-bg: var(--translucent-light);--header-text: var(--light);--table-bg: var(--code-bg);--table-haze: rgba(255,255,255,0.1);--table-border: var(--code-bg);--footer-bg: var(--bg);--post-bg: var(--translucent-light)}html[data-mode="dim"] *{box-shadow:none !important}html[data-mode="dim"] blockquote{background:var(--translucent-light);color:#dedede}html[data-mode="dim"] svg.icon{fill:var(--light)}html[data-mode="dim"] .icon img{background:none}html[data-mode="dim"] .icon svg{fill:#fafafa}html[data-mode="dim"] .sidebar_inner::before{display:none}html[data-mode="dim"] .color_choice::after{background-image:url("../images/night-moon.jpg");transform:translateX(1.4rem)}@media (prefers-color-scheme: dark){html:not([data-mode="lit"]){--light: hsla(0,0%,100%,0.87);--color-mode: 'dim';--text: var(--light);--accent: var(--bubble);--choice-bg: var(--bg);--code-bg: var(--translucent-light);--header-text: var(--light);--table-bg: var(--code-bg);--table-haze: rgba(255,255,255,0.1);--table-border: var(--code-bg);--footer-bg: var(--bg);--post-bg: var(--translucent-light)}html:not([data-mode="lit"]) *{box-shadow:none !important}html:not([data-mode="lit"]) blockquote{background:var(--translucent-light);color:#dedede}html:not([data-mode="lit"]) svg.icon{fill:var(--light)}html:not([data-mode="lit"]) .icon img{background:none}html:not([data-mode="lit"]) .icon svg{fill:#fafafa}html:not([data-mode="lit"]) .sidebar_inner::before{display:none}html:not([data-mode="lit"]) .color_choice::after{background-image:url("../images/night-moon.jpg");transform:translateX(1.4rem)}}@font-face{font-family:'Metropolis';font-style:normal;font-weight:200;src:local("Metropolis Extra Light"),local("Metropolis-Light"),url("../fonts/Metropolis-ExtraLight.woff2") format("woff2"),url("../fonts/Metropolis-ExtraLight.woff") format("woff");font-display:swap}@font-face{font-family:'Metropolis';font-style:italic;font-weight:200;src:local("Metropolis Extra Light Italic"),local("Metropolis-ExtraLightItalic"),url("../fonts/Metropolis-ExtraLightItalic.woff2") format("woff2"),url("../fonts/Metropolis-ExtraLightItalic.woff") format("woff");font-display:swap}@font-face{font-family:'Metropolis';font-style:normal;font-weight:300;src:local("Metropolis Light"),local("Metropolis-Light"),url("../fonts/Metropolis-Light.woff2") format("woff2"),url("../fonts/Metropolis-Light.woff") format("woff");font-display:swap}@font-face{font-family:'Metropolis';font-style:italic;font-weight:300;src:local("Metropolis Light Italic"),local("Metropolis-LightItalic"),url("../fonts/Metropolis-LightItalic.woff2") format("woff2"),url("../fonts/Metropolis-LightItalic.woff") format("woff");font-display:swap}@font-face{font-family:'Metropolis';font-style:normal;font-weight:400;src:local("Metropolis Regular"),local("Metropolis-Regular"),url("../fonts/Metropolis-Regular.woff2") format("woff2"),url("../fonts/Metropolis-Regular.woff") format("woff");font-display:swap}@font-face{font-family:'Metropolis';font-style:italic;font-weight:400;src:local("Metropolis Regular Italic"),local("Metropolis-RegularItalic"),url("../fonts/Metropolis-RegularItalic.woff2") format("woff2"),url("../fonts/Metropolis-RegularItalic.woff") format("woff");font-display:swap}@font-face{font-family:'Metropolis';font-style:normal;font-weight:500;src:local("Metropolis Medium"),local("Metropolis-Medium"),url("../fonts/Metropolis-Medium.woff2") format("woff2"),url("../fonts/Metropolis-Medium.woff") format("woff");font-display:swap}@font-face{font-family:'Metropolis';font-style:italic;font-weight:500;src:local("Metropolis Medium Italic"),local("Metropolis-MediumItalic"),url("../fonts/Metropolis-MediumItalic.woff2") format("woff2"),url("../fonts/Metropolis-MediumItalic.woff") format("woff");font-display:swap}*{box-sizing:border-box;-webkit-appearance:none;margin:0;padding:0}body,html{scroll-behavior:smooth;-webkit-text-size-adjust:100%;font-kerning:normal;-webkit-font-feature-settings:"kern" 1;text-rendering:optimizeLegibility;text-rendering:geometricPrecision;-webkit-text-size-adjust:100%;font-size:100%}body::-webkit-scrollbar-corner,html::-webkit-scrollbar-corner{background-color:transparent}body{font-family:var(--font);background:var(--choice-bg);color:var(--text);font-size:1.1rem;line-height:1.5;max-width:1920px;margin:0 auto;position:relative;display:flex;flex-direction:column;justify-content:space-between;min-height:100vh;font-kerning:normal;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}a{text-decoration:none;color:inherit}a:focus,a:focus-within{outline:none !important}h1,h2,h3,h4,h5{font-family:inherit;font-weight:300;padding:5px 0;margin:15px 0;color:var(--header-text);line-height:1.35}h1:hover .link,h2:hover .link,h3:hover .link,h4:hover .link,h5:hover .link{opacity:1}h1{font-size:200%;font-weight:400}h2{font-size:175%}h3{font-size:150%}h4{font-size:125%}h5{font-size:120%}h6{font-size:100%}img,svg{max-width:100%;vertical-align:middle}img{height:auto;margin:1rem auto;padding:0}img:focus,img:focus-within{outline:none !important;border:none !important}main{flex:1}ul{list-style:none;-webkit-padding-start:0;-moz-padding-start:0}b,strong,em{font-weight:500}hr{border:none;padding:1px;background:#e7e7e7;opacity:0.5;margin:1rem 0}@media (prefers-color-scheme: dark){hr{background:var(--theme)}}aside h3{position:relative;margin:0 !important}aside ul{list-style:initial;padding-left:1rem}aside li{padding:0.25rem 0}table{width:100%;border-collapse:collapse;background:var(--table-haze);margin-bottom:1.5rem}table:not(.ln-table) t{background:var(--table-bg)}td,th{padding:0.5rem 1rem;border:1px solid var(--table-border)}td,th{padding:0.5rem 1rem;font-weight:400}td:not(:first-child),th:not(:first-child){padding-left:1.5rem}th{font-weight:700}tbody{padding:0}tbody tr:nth-child(even){background-color:var(--table-haze)}tbody tr:nth-child(odd){background-color:var(--table-bg)}blockquote{margin:25px auto;quotes:"“" "”" "‘" "’";padding:1.5rem;color:#555555;padding:1rem 1.5rem;border-left:0.2rem solid #0077b8;position:relative;background:var(--haze)}blockquote+.highlight_wrap{margin-top:2.25rem}p{padding:0.8rem 0}.nav_open+.nav_sub::before,.nav_open+.nav_sub .nav_child:first-child::before{width:0;height:0;border-left:0.33rem solid transparent;border-right:0.33rem solid transparent;top:-0.5rem;left:1rem}.nav{color:#fafafa;display:flex;justify-content:space-between;--maxWidth: 1440px;max-width:var(--maxWidth);margin-left:auto;margin-right:auto}.nav_active{background-color:rgba(255,255,255,0.05);border-radius:0.25rem}.nav_icon{width:0.7rem;margin-left:0.33rem;transition:transform 0.3s var(--ease);transform-origin:50% 50%}.nav_body{display:flex;flex:1}.nav_header{background-color:#002538;padding:0 1.5rem;position:fixed;width:100%;z-index:99;left:0}.nav_item{padding:0.5rem 1rem;display:inline-flex;align-items:center}.nav_sub{width:100%;left:0;position:absolute;z-index:20;border-radius:0 0 0.5rem 0.5rem;top:3rem;transition:height 0.3s ease-in-out;height:0;overflow:hidden;padding:0.96rem 0 0;background:transparent}.nav_parent{position:relative;display:flex;align-items:center;margin:0.25rem 0;border-radius:0.5rem}.nav_open+.nav_sub .nav_child{padding-top:0.5rem;padding-bottom:0.5rem;z-index:3}@media screen and (min-width: 769px){.nav_open+.nav_sub .nav_child+a{padding-top:0}}.nav_open+.nav_sub .nav_child:not(:first-child){position:relative}.nav_open+.nav_sub .nav_child:first-child::before{position:absolute;content:"";border-bottom:0.5rem solid var(--translucent-light);z-index:2}.nav_open+.nav_sub{height:initial;z-index:999;overflow:initial;border-radius:0.5rem;padding-bottom:0.5rem}@media screen and (min-width: 769px){.nav_open+.nav_sub{color:var(--text)}}.nav_open+.nav_sub::before,.nav_open+.nav_sub::after{content:"";position:absolute}.nav_open+.nav_sub::before{z-index:1}@media screen and (min-width: 769px){.nav_open+.nav_sub::before{border-bottom:0.5rem solid var(--choice-bg)}}.nav_open+.nav_sub::after{top:0;left:0;right:0;bottom:0;background:var(--translucent-light);border-radius:0.5rem;box-shadow:0 1rem 3rem rgba(0,0,0,0.25)}@media screen and (min-width: 769px){.nav_open+.nav_sub{background:var(--choice-bg);width:auto;white-space:nowrap}}.nav_open .nav_icon{transform:rotate(180deg)}.nav_sub .nav_item{z-index:5;display:block;padding-top:0.75rem;padding-bottom:0.75rem;transition:background 0.3s ease-out;margin:0}.nav_sub .nav_item:not(.nav_child){position:relative}.nav_brand img{max-width:15rem;margin:0}@media screen and (min-width: 769px){.nav_brand{padding-left:0}.nav_brand img{background:transparent !important}}.nav_center{display:none}@media screen and (min-width: 769px){.nav_center{display:flex;flex:1;align-items:center;justify-content:center}.nav_center+.follow{flex:initial}}@media screen and (min-width: 769px){.nav_hide{display:none}}.nav_close{display:none}.content,.footer{padding:1.5rem}@media screen and (min-width: 1441px){.content,.footer{padding:1.5rem 0}}.content{padding-top:5rem;--maxWidth: 1440px;max-width:var(--maxWidth);margin-left:auto;margin-right:auto}.footer{background:var(--footer-bg);margin-top:2rem;font-size:0.9rem}.footer_inner{--maxWidth: 1440px;max-width:var(--maxWidth);margin-left:auto;margin-right:auto;display:grid;grid-template-columns:4rem 1fr;align-items:center;position:relative}.button{background-color:#0077b8;color:#fff;display:inline-flex;padding:0.5rem 1.5rem;text-transform:uppercase;border:1px solid #0077b8;border-radius:1.5rem;font-size:0.9rem;align-items:center;user-select:none}.button:hover,.button:focus{background-color:#003552;color:#fff;border:1px solid #003552}.button_translucent{background-color:rgba(0,119,184,0.15);color:#0077b8;border:1px solid transparent}.button_tally{padding:0 0.75rem;border-radius:0.5rem;background-color:#0077b8;display:inline-flex;justify-content:center;align-items:center;color:#fff;margin:0.1rem 0 0.1rem 0.2rem;font-size:0.7rem}.post_link,.post_title{margin-bottom:0}.posts{margin-top:2rem}.post_header{height:50vh;max-height:35rem;background-color:#002538;background-size:cover;background-position:center;margin-top:4.2rem}@media screen and (max-width: 992px){.post_header{height:40vh;margin-top:3rem}}@media screen and (max-width: 667px){.post_header{height:30vh}}.post_header+.content{padding-top:0}.post_item{margin-bottom:3rem;border-radius:0.5rem;background:var(--post-bg)}.post_tag{padding:0.2rem 0.8rem;font-size:0.8rem}.post_tags{display:none}.post_tags.jswidgetopen{display:initial;position:fixed;top:0;left:0;height:100vh;overflow-y:auto;width:100vw;padding:5rem 1.5rem;background:var(--translucent-light);cursor:pointer;z-index:999;overflow-y:auto}.post_tags_toggle{margin-top:0.5rem;margin-left:0.5rem;cursor:pointer}.post_tag,.post_share{margin:0.5rem}.post_share{display:inline-flex}.post_meta{display:inline-flex;flex-flow:row wrap;align-items:center}.post_meta .button{margin-bottom:0}.post_date{margin-right:0.5rem;margin-left:0.25rem}.post_content a{color:#0077b8}.post_content ul,.post_content ol{list-style:initial;padding:0.5rem 1.25rem}.post_content ul li,.post_content ol li{padding-top:0.25rem}.post_content ol{list-style:decimal}.scrollable{display:grid;width:100%;max-width:100%;overflow-x:auto}.to-top{position:fixed;bottom:2rem;right:1.5rem;height:2.25rem;width:2.25rem;background-color:#0077b8;display:flex;align-items:center;justify-content:center;border:none;-webkit-appearance:none;border-radius:50%;color:#fff !important;text-decoration:none !important;font-size:1.25rem;cursor:pointer}@media screen and (max-width: 667px){.to-top{bottom:2.25rem}}.to-top,.to-top:focus{outline:none}.mb-0{margin-bottom:0 !important}.tags_list{cursor:initial;background:var(--choice-bg);padding:4.5rem 1.5rem 1.5rem 1.5rem;border-radius:1rem;max-width:720px;margin:0 auto;box-shadow:0 0.5rem 1.5rem rgba(0,0,0,0.12);position:relative;display:flex;flex-flow:row wrap}.tags_nav{position:relative}.tags_hide{position:absolute;top:1rem;right:1.5rem;padding:0.5rem;border-radius:50%;cursor:pointer}@media screen and (min-width: 992px){.tags_hide{display:none}}.tags_sort{font-size:1rem;color:var(--light);background:var(--theme);position:absolute;top:1.5rem;left:1.5rem;border-radius:1.5rem;padding:0.1rem}.tags_sort,.tags_sort span{user-select:none}.tags_sort span{display:inline-flex;justify-content:center;align-items:center;height:2rem;position:relative;z-index:5;cursor:pointer;width:5rem;font-weight:500}.tags_sort::before{content:"";position:absolute;width:4.5rem;top:0.25rem;bottom:0.25rem;left:0.25rem;z-index:3;background:var(--bg);opacity:0.5;border-radius:1.5rem;transition:0.25s transform var(--ease)}.tags_sort.sorted::before{transform:translateX(5rem)}.tag-title{border-bottom:none !important;display:inline-block !important;position:relative;font-size:2rem;margin-bottom:-1rem}.tag-title::after{content:attr(data-count);margin-left:1.5rem;background-color:#eee;padding:0.25rem 1rem;border-radius:15%;font-size:1.5rem}.icon{display:inline-flex;justify-content:center;align-items:center;margin:0 0.5rem}.icon,.icon img,.icon svg{width:1.1rem;height:1.1rem}.icon_2{width:2.2rem;height:2.2rem}.link{opacity:0;position:relative}.link_yank{opacity:1}.link_yanked{position:absolute;right:-1rem;top:-2rem;background-color:#0077b8;color:#fff;width:7rem;padding:0.25rem 0.5rem;font-size:0.9rem;border-radius:1rem;text-align:center}.link_yanked::after{position:absolute;top:1rem;content:"";border-color:#0077b8 transparent;border-style:solid;border-width:1rem 1rem 0 1rem;height:0;width:0;transform-origin:50% 50%;transform:rotate(145deg);right:0.45rem}.excerpt_header,.excerpt_footer{padding:1rem}.excerpt_footer{padding:0 1rem 2.25rem 1rem}.excerpt_thumbnail{min-height:10rem;display:none}@media screen and (min-width: 769px){.excerpt_thumbnail{display:block;border-radius:0.5rem}}.excerpt_footer.partition{display:grid}@media screen and (min-width: 769px){.excerpt_footer.partition{grid-template-columns:2fr 7fr;grid-gap:1rem}}.sidebar_inner{position:relative}.sidebar_inner::before{content:"";padding:0.5px;top:0;bottom:0;background:linear-gradient(to bottom, var(--haze), var(--light), var(--haze));position:absolute;left:-2rem}.pagination{display:flex}.page-item{padding:0.2rem}.page-item.disabled{opacity:0.7}.page-item:first-child,.page-item:last-child{display:none}.page-item.active a{background-color:#003552}.page-link{padding:0.25rem 0.75rem;background-color:#0077b8;color:#fff;border-radius:1rem}.float_left{float:left;margin-right:1rem}.float_left+p{padding-top:0}.float_right{float:right;margin-left:1rem}.float_left::after,.float_right::after{clear:both}.follow{display:flex;align-items:center;flex:1;justify-content:flex-end}.follow svg{fill:#fafafa;margin-left:0.75rem}.img_alt{font-style:italic;padding-top:0rem;opacity:0.67;font-size:0.9rem}.to_top{background-color:#0077b8;width:2.75rem;height:2.75rem;display:flex;justify-content:center;align-items:center;cursor:pointer;border-radius:50%;position:fixed;bottom:1.5rem;right:1.5rem;z-index:99}.to_top.ios{position:absolute;bottom:0.75rem;right:0}.to_top:hover{background-color:#0077b8}.to_top svg{fill:#fff;opacity:0.5;transition:0.3s opacity var(--ease)}.to_top:hover svg{opacity:1}.color_mode{height:1.5rem;display:grid;align-items:center;margin:0 0.5rem}@media screen and (min-width: 769px){.color_mode{margin:0 1.5rem;grid-template-columns:1fr}}.color_choice{width:3rem;background-color:var(--translucent-light);border-radius:1rem;height:1.5rem;outline:none;border:none;-webkit-appearance:none;cursor:pointer;position:relative;position:relative;overflow:hidden;box-shadow:0 0.25rem 1rem rgba(0,0,0,0.15)}.color_choice::after{content:"";position:absolute;top:0.1rem;left:0.1rem;width:1.3rem;height:1.3rem;background-image:url("../images/sun.svg");background-position:center;background-size:cover;border-radius:50%;z-index:2}.color_animate{transition:transform 0.5s cubic-bezier(0.075, 0.82, 0.165, 1)}.color_animate::after{transition:transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);will-change:transform}.taxonomy{text-transform:capitalize}.image-scale{position:fixed;z-index:999999;left:0;right:0;height:100vh;top:0;padding:1.5rem;background-color:var(--bg);display:grid;align-items:center;overflow:auto}.image-scale .image-scalable{background-color:var(--text)}.image-scalable{cursor:pointer;transition:transform 0.3s var(--ease)}.image_featured{display:block;margin-left:auto !important;margin-right:auto !important}.pt-1{padding-top:1.5rem}.pb-1{padding-bottom:1.5rem}.mt-1{margin-top:1.5rem}.mb-1{margin-bottom:1.5rem}.pt-2{padding-top:3rem}.pb-2{padding-bottom:3rem}.mt-2{margin-top:3rem}.mb-2{margin-bottom:3rem}.flex{display:flex;flex-direction:column;align-items:center}.shadow{box-shadow:0 0 60px rgba(0,0,0,0.17)}@media screen and (min-width: 42rem){.grid-2,.grid-3,.grid-4,.grid-auto,.grid-inverse{display:grid;grid-template-columns:1fr}[class*='grid-']{grid-gap:2rem}.grid-inverse{grid-template-columns:70% 1fr;grid-column-gap:4rem}.grid-2{grid-template-columns:1fr 1fr}.grid-3{grid-template-columns:repeat(auto-fit, minmax(19rem, 1fr))}.grid-4{grid-template-columns:repeat(auto-fit, minmax(16rem, 1fr))}}.facebook svg{fill:#325c94}.twitter svg{fill:#00abdc}.linkedin svg{fill:#007bb6}.never{height:75vh;display:flex;justify-content:center;align-items:center;flex-direction:column;padding:1.5rem;text-align:center}.inline{display:inline;margin:0}.hidden{display:none}@media screen and (max-width: 769px){.nav,.nav_body{flex-direction:column}.nav_body{position:fixed;width:90%;max-width:16.5rem;top:0;bottom:0;background-color:#002538;transition:transform 0.3s var(--easing)}.nav_body_right{transform:translateX(100vw);right:0}.nav_body_left{transform:translateX(-100vw);left:0}.nav_close{width:3rem;position:absolute;right:-4rem;top:0;bottom:0;height:100%;cursor:pointer;z-index:1000;display:flex;justify-content:center;align-items:center}.nav_close svg{width:1.25rem;fill:var(--light);height:1.25rem;display:none}.nav_close svg:first-child{display:initial}.nav_close svg.isopen{display:none}.nav_close svg.isopen+svg{display:initial}.nav_brand{position:relative;z-index:999;width:calc(100% - 3rem);padding-left:0}.nav_parent{display:grid}.nav_sub{position:relative;top:initial;padding-top:0}.jsopen::after{content:"";position:fixed;z-index:2;background-color:rgba(0,0,0,0.3);top:0;left:0;right:0;bottom:0}.jsopen .nav_body{transform:translateX(0);padding-left:1.5rem;padding-right:1.5rem}.jsopen .nav_parent:first-child{margin-top:4.4rem}.jsopen .nav .follow{justify-content:flex-start;flex:initial;margin-top:0.75rem}}@keyframes pulse{0%{opacity:1}75%{opacity:0.1}100%{opacity:1}}code{font-size:15px;font-weight:400;overflow-y:hidden;display:block;font-family:'Monaco', monospace;word-break:break-all}code.noClass{--inlineColor: rgb(194, 29, 0);color:var(--inlineColor);display:inline;line-break:anywhere}.windows .highlight{overflow-x:hidden}.windows .highlight:hover{overflow-x:auto}.highlight{display:grid;width:100%;border-radius:0 0.2rem 0.2rem 0;overflow-x:auto;position:relative}.highlight_wrap{background:var(--code-bg) !important;border-radius:0.5rem;position:relative;padding:0 1rem;margin:1.5rem auto 1rem auto}.highlight_wrap+.highlight_wrap{margin-top:2.25rem}.highlight_wrap:hover>div{opacity:1}.highlight_wrap .lang{position:absolute;top:0;right:0;text-align:right;width:7.5rem;padding:0.5rem 1rem;font-style:italic;text-transform:uppercase;font-size:67%;opacity:0.5;color:var(--light)}.highlight_wrap:hover .lang{opacity:0.1}.highlight .highlight{margin:0}.highlight pre{color:var(--light) !important;border-radius:4px;font-family:'Monaco', monospace;padding-top:1.5rem;padding-bottom:2rem}.highlight table{display:grid;max-width:100%;margin-bottom:0;background:transparent}.highlight td,.highlight th{padding:0}.highlight .lntd{width:100%;border:none}.highlight .lntd:first-child,.highlight .lntd:first-child pre{width:2.5rem !important;padding-left:0;padding-right:0;color:rgba(255,255,255,0.5);user-select:none}.highlight .lntd:first-child pre{width:100%;display:flex;align-items:center;flex-direction:column}.err{color:#a61717;background-color:#e3d2d2}.hl{width:100%;background-color:rgba(255,255,255,0.25)}.ln,.lnt{margin-right:0.75rem;padding:0;transition:opacity 0.3s var(--ease)}.ln,.ln span,.lnt,.lnt span{color:rgba(255,255,255,0.5);user-select:none}.k,.kc,.kd,.kn,.kp,.kr,.kt,.nt{color:#6ab825;font-weight:500}.kn,.kp{font-weight:400}.nb,.no,.nv{color:#24909d}.nc,.nf,.nn{color:#447fcf}.s,.sa,.sb,.sc,.dl,.sd,.s2,.se,.sh,.si,.sx,.sr,.s1,.ss{color:#ed9d13}.m,.mb,.mf,.mh,.mi,.il,.mo{color:#3677a9}.ow{color:#6ab825;font-weight:500}.c,.ch,.cm,.c1{color:#999;font-style:italic}.cs{color:#e50808;background-color:#520000;font-weight:500}.cp,.cpf{color:#cd2828;font-weight:500}.gd,.gr{color:#d22323}.ge{font-style:italic}.gh,.gu,.nd,.na,.ne{color:#ffa500;font-weight:500}.gi{color:#589819}.go{color:#ccc}.gp{color:#aaa}.gs{font-weight:500}.gt{color:#d22323}.w{color:#666}.hljs-string{color:#6ab825}.hljs-attr{color:#ed9d13}.p .hljs-attr{color:var(--light)}.pre_wrap{white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space:-o-pre-wrap;word-wrap:break-word}.pre_nolines.ln{display:none}.panel_box{display:inline-flex;perspective:300px;grid-gap:0.5rem;transition:opacity 0.3s var(--easing);background:var(--code-bg);padding:0.5rem 1.5rem;border-radius:2rem;align-items:center;position:absolute;right:0rem;top:-2.1rem;opacity:0}.panel_icon{display:inline-flex;align-items:center;justify-content:center;cursor:pointer;padding:0.1rem;transform-origin:50% 50%}.panel_icon.active{animation:pulse 0.1s linear}.panel_icon svg{fill:var(--light);width:1.5rem;height:1.5rem}.panel_hide{display:none}.panel_from{position:absolute;color:var(--theme);bottom:0;font-size:1.5rem;font-weight:500;padding:0.5rem 0;cursor:pointer;letter-spacing:0.1px;z-index:19}.panel_expanded .panel_from{display:none}
-
-/*# sourceMappingURL=styles.css.map */
\ No newline at end of file
diff --git a/blog/themes/hugo-clarity-master/resources/_gen/assets/sass/sass/main.sass_d2bdc985df0e3369a538eb4e858e857f.json b/blog/themes/hugo-clarity-master/resources/_gen/assets/sass/sass/main.sass_d2bdc985df0e3369a538eb4e858e857f.json
deleted file mode 100644
index 361666e..0000000
--- a/blog/themes/hugo-clarity-master/resources/_gen/assets/sass/sass/main.sass_d2bdc985df0e3369a538eb4e858e857f.json
+++ /dev/null
@@ -1 +0,0 @@
-{"Target":"css/styles.2b3290fc6e94839826981c23ed76e1831472bd3f8af68332da00b97d9430b56bfb7e9394d5c09aca633c093c621709cdd745eec940be733933ac5d876223de52.css","MediaType":"text/css","Data":{"Integrity":"sha512-KzKQ/G6Ug5gmmBwj7XbhgxRyvT+K9oMy2gC5fZQwtWv7fpOU1cCaymM8CTxiFwnN10XuyUC+czkzrF2HYiPeUg=="}}
\ No newline at end of file
diff --git a/blog/themes/hugo-clarity-master/static/fonts/Metropolis-Black.woff b/blog/themes/hugo-clarity-master/static/fonts/Metropolis-Black.woff
deleted file mode 100644
index 0b4022d..0000000
Binary files a/blog/themes/hugo-clarity-master/static/fonts/Metropolis-Black.woff and /dev/null differ
diff --git a/blog/themes/hugo-clarity-master/static/fonts/Metropolis-Black.woff2 b/blog/themes/hugo-clarity-master/static/fonts/Metropolis-Black.woff2
deleted file mode 100644
index 9ad74d2..0000000
Binary files a/blog/themes/hugo-clarity-master/static/fonts/Metropolis-Black.woff2 and /dev/null differ
diff --git a/blog/themes/hugo-clarity-master/static/fonts/Metropolis-BlackItalic.woff b/blog/themes/hugo-clarity-master/static/fonts/Metropolis-BlackItalic.woff
deleted file mode 100644
index 470b7e6..0000000
Binary files a/blog/themes/hugo-clarity-master/static/fonts/Metropolis-BlackItalic.woff and /dev/null differ
diff --git a/blog/themes/hugo-clarity-master/static/fonts/Metropolis-BlackItalic.woff2 b/blog/themes/hugo-clarity-master/static/fonts/Metropolis-BlackItalic.woff2
deleted file mode 100644
index a269f3a..0000000
Binary files a/blog/themes/hugo-clarity-master/static/fonts/Metropolis-BlackItalic.woff2 and /dev/null differ
diff --git a/blog/themes/hugo-clarity-master/static/fonts/Metropolis-Bold.woff b/blog/themes/hugo-clarity-master/static/fonts/Metropolis-Bold.woff
deleted file mode 100644
index 8538378..0000000
Binary files a/blog/themes/hugo-clarity-master/static/fonts/Metropolis-Bold.woff and /dev/null differ
diff --git a/blog/themes/hugo-clarity-master/static/fonts/Metropolis-Bold.woff2 b/blog/themes/hugo-clarity-master/static/fonts/Metropolis-Bold.woff2
deleted file mode 100644
index 9648b0c..0000000
Binary files a/blog/themes/hugo-clarity-master/static/fonts/Metropolis-Bold.woff2 and /dev/null differ
diff --git a/blog/themes/hugo-clarity-master/static/fonts/Metropolis-BoldItalic.woff b/blog/themes/hugo-clarity-master/static/fonts/Metropolis-BoldItalic.woff
deleted file mode 100644
index 377c991..0000000
Binary files a/blog/themes/hugo-clarity-master/static/fonts/Metropolis-BoldItalic.woff and /dev/null differ
diff --git a/blog/themes/hugo-clarity-master/static/fonts/Metropolis-BoldItalic.woff2 b/blog/themes/hugo-clarity-master/static/fonts/Metropolis-BoldItalic.woff2
deleted file mode 100644
index 84a031b..0000000
Binary files a/blog/themes/hugo-clarity-master/static/fonts/Metropolis-BoldItalic.woff2 and /dev/null differ
diff --git a/blog/themes/hugo-clarity-master/static/fonts/Metropolis-ExtraBold.woff b/blog/themes/hugo-clarity-master/static/fonts/Metropolis-ExtraBold.woff
deleted file mode 100644
index fc98683..0000000
Binary files a/blog/themes/hugo-clarity-master/static/fonts/Metropolis-ExtraBold.woff and /dev/null differ
diff --git a/blog/themes/hugo-clarity-master/static/fonts/Metropolis-ExtraBold.woff2 b/blog/themes/hugo-clarity-master/static/fonts/Metropolis-ExtraBold.woff2
deleted file mode 100644
index 8a96ad9..0000000
Binary files a/blog/themes/hugo-clarity-master/static/fonts/Metropolis-ExtraBold.woff2 and /dev/null differ
diff --git a/blog/themes/hugo-clarity-master/static/fonts/Metropolis-ExtraBoldItalic.woff b/blog/themes/hugo-clarity-master/static/fonts/Metropolis-ExtraBoldItalic.woff
deleted file mode 100644
index 7039b62..0000000
Binary files a/blog/themes/hugo-clarity-master/static/fonts/Metropolis-ExtraBoldItalic.woff and /dev/null differ
diff --git a/blog/themes/hugo-clarity-master/static/fonts/Metropolis-ExtraBoldItalic.woff2 b/blog/themes/hugo-clarity-master/static/fonts/Metropolis-ExtraBoldItalic.woff2
deleted file mode 100644
index e080928..0000000
Binary files a/blog/themes/hugo-clarity-master/static/fonts/Metropolis-ExtraBoldItalic.woff2 and /dev/null differ
diff --git a/blog/themes/hugo-clarity-master/static/fonts/Metropolis-ExtraLight.woff b/blog/themes/hugo-clarity-master/static/fonts/Metropolis-ExtraLight.woff
deleted file mode 100644
index 7e5c31e..0000000
Binary files a/blog/themes/hugo-clarity-master/static/fonts/Metropolis-ExtraLight.woff and /dev/null differ
diff --git a/blog/themes/hugo-clarity-master/static/fonts/Metropolis-ExtraLight.woff2 b/blog/themes/hugo-clarity-master/static/fonts/Metropolis-ExtraLight.woff2
deleted file mode 100644
index 951cfc4..0000000
Binary files a/blog/themes/hugo-clarity-master/static/fonts/Metropolis-ExtraLight.woff2 and /dev/null differ
diff --git a/blog/themes/hugo-clarity-master/static/fonts/Metropolis-ExtraLightItalic.woff b/blog/themes/hugo-clarity-master/static/fonts/Metropolis-ExtraLightItalic.woff
deleted file mode 100644
index da2929c..0000000
Binary files a/blog/themes/hugo-clarity-master/static/fonts/Metropolis-ExtraLightItalic.woff and /dev/null differ
diff --git a/blog/themes/hugo-clarity-master/static/fonts/Metropolis-ExtraLightItalic.woff2 b/blog/themes/hugo-clarity-master/static/fonts/Metropolis-ExtraLightItalic.woff2
deleted file mode 100644
index c6a665c..0000000
Binary files a/blog/themes/hugo-clarity-master/static/fonts/Metropolis-ExtraLightItalic.woff2 and /dev/null differ
diff --git a/blog/themes/hugo-clarity-master/static/fonts/Metropolis-Light.woff b/blog/themes/hugo-clarity-master/static/fonts/Metropolis-Light.woff
deleted file mode 100644
index f3a84ef..0000000
Binary files a/blog/themes/hugo-clarity-master/static/fonts/Metropolis-Light.woff and /dev/null differ
diff --git a/blog/themes/hugo-clarity-master/static/fonts/Metropolis-Light.woff2 b/blog/themes/hugo-clarity-master/static/fonts/Metropolis-Light.woff2
deleted file mode 100644
index f0ff6f3..0000000
Binary files a/blog/themes/hugo-clarity-master/static/fonts/Metropolis-Light.woff2 and /dev/null differ
diff --git a/blog/themes/hugo-clarity-master/static/fonts/Metropolis-LightItalic.woff b/blog/themes/hugo-clarity-master/static/fonts/Metropolis-LightItalic.woff
deleted file mode 100644
index ee72f2c..0000000
Binary files a/blog/themes/hugo-clarity-master/static/fonts/Metropolis-LightItalic.woff and /dev/null differ
diff --git a/blog/themes/hugo-clarity-master/static/fonts/Metropolis-LightItalic.woff2 b/blog/themes/hugo-clarity-master/static/fonts/Metropolis-LightItalic.woff2
deleted file mode 100644
index 3cbcc34..0000000
Binary files a/blog/themes/hugo-clarity-master/static/fonts/Metropolis-LightItalic.woff2 and /dev/null differ
diff --git a/blog/themes/hugo-clarity-master/static/fonts/Metropolis-Medium.woff b/blog/themes/hugo-clarity-master/static/fonts/Metropolis-Medium.woff
deleted file mode 100644
index cd3c1ab..0000000
Binary files a/blog/themes/hugo-clarity-master/static/fonts/Metropolis-Medium.woff and /dev/null differ
diff --git a/blog/themes/hugo-clarity-master/static/fonts/Metropolis-Medium.woff2 b/blog/themes/hugo-clarity-master/static/fonts/Metropolis-Medium.woff2
deleted file mode 100644
index 43578fe..0000000
Binary files a/blog/themes/hugo-clarity-master/static/fonts/Metropolis-Medium.woff2 and /dev/null differ
diff --git a/blog/themes/hugo-clarity-master/static/fonts/Metropolis-MediumItalic.woff b/blog/themes/hugo-clarity-master/static/fonts/Metropolis-MediumItalic.woff
deleted file mode 100644
index 814a9d5..0000000
Binary files a/blog/themes/hugo-clarity-master/static/fonts/Metropolis-MediumItalic.woff and /dev/null differ
diff --git a/blog/themes/hugo-clarity-master/static/fonts/Metropolis-MediumItalic.woff2 b/blog/themes/hugo-clarity-master/static/fonts/Metropolis-MediumItalic.woff2
deleted file mode 100644
index 83f741c..0000000
Binary files a/blog/themes/hugo-clarity-master/static/fonts/Metropolis-MediumItalic.woff2 and /dev/null differ
diff --git a/blog/themes/hugo-clarity-master/static/fonts/Metropolis-Regular.woff b/blog/themes/hugo-clarity-master/static/fonts/Metropolis-Regular.woff
deleted file mode 100644
index 6aa4dba..0000000
Binary files a/blog/themes/hugo-clarity-master/static/fonts/Metropolis-Regular.woff and /dev/null differ
diff --git a/blog/themes/hugo-clarity-master/static/fonts/Metropolis-Regular.woff2 b/blog/themes/hugo-clarity-master/static/fonts/Metropolis-Regular.woff2
deleted file mode 100644
index f50bf34..0000000
Binary files a/blog/themes/hugo-clarity-master/static/fonts/Metropolis-Regular.woff2 and /dev/null differ
diff --git a/blog/themes/hugo-clarity-master/static/fonts/Metropolis-RegularItalic.woff b/blog/themes/hugo-clarity-master/static/fonts/Metropolis-RegularItalic.woff
deleted file mode 100644
index 019578a..0000000
Binary files a/blog/themes/hugo-clarity-master/static/fonts/Metropolis-RegularItalic.woff and /dev/null differ
diff --git a/blog/themes/hugo-clarity-master/static/fonts/Metropolis-RegularItalic.woff2 b/blog/themes/hugo-clarity-master/static/fonts/Metropolis-RegularItalic.woff2
deleted file mode 100644
index 93de258..0000000
Binary files a/blog/themes/hugo-clarity-master/static/fonts/Metropolis-RegularItalic.woff2 and /dev/null differ
diff --git a/blog/themes/hugo-clarity-master/static/fonts/Metropolis-SemiBold.woff b/blog/themes/hugo-clarity-master/static/fonts/Metropolis-SemiBold.woff
deleted file mode 100644
index ca2edb0..0000000
Binary files a/blog/themes/hugo-clarity-master/static/fonts/Metropolis-SemiBold.woff and /dev/null differ
diff --git a/blog/themes/hugo-clarity-master/static/fonts/Metropolis-SemiBold.woff2 b/blog/themes/hugo-clarity-master/static/fonts/Metropolis-SemiBold.woff2
deleted file mode 100644
index fad6dfd..0000000
Binary files a/blog/themes/hugo-clarity-master/static/fonts/Metropolis-SemiBold.woff2 and /dev/null differ
diff --git a/blog/themes/hugo-clarity-master/static/fonts/Metropolis-SemiBoldItalic.woff b/blog/themes/hugo-clarity-master/static/fonts/Metropolis-SemiBoldItalic.woff
deleted file mode 100644
index 3c6a03b..0000000
Binary files a/blog/themes/hugo-clarity-master/static/fonts/Metropolis-SemiBoldItalic.woff and /dev/null differ
diff --git a/blog/themes/hugo-clarity-master/static/fonts/Metropolis-SemiBoldItalic.woff2 b/blog/themes/hugo-clarity-master/static/fonts/Metropolis-SemiBoldItalic.woff2
deleted file mode 100644
index ad97ed0..0000000
Binary files a/blog/themes/hugo-clarity-master/static/fonts/Metropolis-SemiBoldItalic.woff2 and /dev/null differ
diff --git a/blog/themes/hugo-clarity-master/static/fonts/Metropolis-Thin.woff b/blog/themes/hugo-clarity-master/static/fonts/Metropolis-Thin.woff
deleted file mode 100644
index 40341f4..0000000
Binary files a/blog/themes/hugo-clarity-master/static/fonts/Metropolis-Thin.woff and /dev/null differ
diff --git a/blog/themes/hugo-clarity-master/static/fonts/Metropolis-Thin.woff2 b/blog/themes/hugo-clarity-master/static/fonts/Metropolis-Thin.woff2
deleted file mode 100644
index 9ffe02a..0000000
Binary files a/blog/themes/hugo-clarity-master/static/fonts/Metropolis-Thin.woff2 and /dev/null differ
diff --git a/blog/themes/hugo-clarity-master/static/fonts/Metropolis-ThinItalic.woff b/blog/themes/hugo-clarity-master/static/fonts/Metropolis-ThinItalic.woff
deleted file mode 100644
index 8943df9..0000000
Binary files a/blog/themes/hugo-clarity-master/static/fonts/Metropolis-ThinItalic.woff and /dev/null differ
diff --git a/blog/themes/hugo-clarity-master/static/fonts/Metropolis-ThinItalic.woff2 b/blog/themes/hugo-clarity-master/static/fonts/Metropolis-ThinItalic.woff2
deleted file mode 100644
index e4bdf05..0000000
Binary files a/blog/themes/hugo-clarity-master/static/fonts/Metropolis-ThinItalic.woff2 and /dev/null differ
diff --git a/blog/themes/hugo-clarity-master/static/icons/android-chrome-192x192.png b/blog/themes/hugo-clarity-master/static/icons/android-chrome-192x192.png
deleted file mode 100644
index c869c6c..0000000
Binary files a/blog/themes/hugo-clarity-master/static/icons/android-chrome-192x192.png and /dev/null differ
diff --git a/blog/themes/hugo-clarity-master/static/icons/android-chrome-256x256.png b/blog/themes/hugo-clarity-master/static/icons/android-chrome-256x256.png
deleted file mode 100644
index 8b522f6..0000000
Binary files a/blog/themes/hugo-clarity-master/static/icons/android-chrome-256x256.png and /dev/null differ
diff --git a/blog/themes/hugo-clarity-master/static/icons/apple-touch-icon.png b/blog/themes/hugo-clarity-master/static/icons/apple-touch-icon.png
deleted file mode 100644
index 8156ad7..0000000
Binary files a/blog/themes/hugo-clarity-master/static/icons/apple-touch-icon.png and /dev/null differ
diff --git a/blog/themes/hugo-clarity-master/static/icons/bar.svg b/blog/themes/hugo-clarity-master/static/icons/bar.svg
deleted file mode 100644
index 0defb0a..0000000
--- a/blog/themes/hugo-clarity-master/static/icons/bar.svg
+++ /dev/null
@@ -1 +0,0 @@
-
diff --git a/blog/themes/hugo-clarity-master/static/icons/browserconfig.xml b/blog/themes/hugo-clarity-master/static/icons/browserconfig.xml
deleted file mode 100644
index b3930d0..0000000
--- a/blog/themes/hugo-clarity-master/static/icons/browserconfig.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
-
- #da532c
-
-
-
diff --git a/blog/themes/hugo-clarity-master/static/icons/cancel.svg b/blog/themes/hugo-clarity-master/static/icons/cancel.svg
deleted file mode 100644
index f2e8469..0000000
--- a/blog/themes/hugo-clarity-master/static/icons/cancel.svg
+++ /dev/null
@@ -1,42 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/blog/themes/hugo-clarity-master/static/icons/caret-icon.svg b/blog/themes/hugo-clarity-master/static/icons/caret-icon.svg
deleted file mode 100644
index 8f9bb98..0000000
--- a/blog/themes/hugo-clarity-master/static/icons/caret-icon.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/blog/themes/hugo-clarity-master/static/icons/carly.svg b/blog/themes/hugo-clarity-master/static/icons/carly.svg
deleted file mode 100644
index 2b41b2c..0000000
--- a/blog/themes/hugo-clarity-master/static/icons/carly.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/blog/themes/hugo-clarity-master/static/icons/close.svg b/blog/themes/hugo-clarity-master/static/icons/close.svg
deleted file mode 100644
index 0b43290..0000000
--- a/blog/themes/hugo-clarity-master/static/icons/close.svg
+++ /dev/null
@@ -1 +0,0 @@
-
diff --git a/blog/themes/hugo-clarity-master/static/icons/copy.svg b/blog/themes/hugo-clarity-master/static/icons/copy.svg
deleted file mode 100644
index 93e6e94..0000000
--- a/blog/themes/hugo-clarity-master/static/icons/copy.svg
+++ /dev/null
@@ -1,66 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/blog/themes/hugo-clarity-master/static/icons/expand.svg b/blog/themes/hugo-clarity-master/static/icons/expand.svg
deleted file mode 100644
index dce2376..0000000
--- a/blog/themes/hugo-clarity-master/static/icons/expand.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/blog/themes/hugo-clarity-master/static/icons/favicon-16x16.png b/blog/themes/hugo-clarity-master/static/icons/favicon-16x16.png
deleted file mode 100644
index f15d4ff..0000000
Binary files a/blog/themes/hugo-clarity-master/static/icons/favicon-16x16.png and /dev/null differ
diff --git a/blog/themes/hugo-clarity-master/static/icons/favicon-32x32.png b/blog/themes/hugo-clarity-master/static/icons/favicon-32x32.png
deleted file mode 100644
index 45bfd44..0000000
Binary files a/blog/themes/hugo-clarity-master/static/icons/favicon-32x32.png and /dev/null differ
diff --git a/blog/themes/hugo-clarity-master/static/icons/favicon.ico b/blog/themes/hugo-clarity-master/static/icons/favicon.ico
deleted file mode 100644
index 8f21884..0000000
Binary files a/blog/themes/hugo-clarity-master/static/icons/favicon.ico and /dev/null differ
diff --git a/blog/themes/hugo-clarity-master/static/icons/link.svg b/blog/themes/hugo-clarity-master/static/icons/link.svg
deleted file mode 100644
index 6a60d1d..0000000
--- a/blog/themes/hugo-clarity-master/static/icons/link.svg
+++ /dev/null
@@ -1 +0,0 @@
-
diff --git a/blog/themes/hugo-clarity-master/static/icons/mstile-150x150.png b/blog/themes/hugo-clarity-master/static/icons/mstile-150x150.png
deleted file mode 100644
index ab67c73..0000000
Binary files a/blog/themes/hugo-clarity-master/static/icons/mstile-150x150.png and /dev/null differ
diff --git a/blog/themes/hugo-clarity-master/static/icons/order.svg b/blog/themes/hugo-clarity-master/static/icons/order.svg
deleted file mode 100644
index 9e9161f..0000000
--- a/blog/themes/hugo-clarity-master/static/icons/order.svg
+++ /dev/null
@@ -1,66 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/blog/themes/hugo-clarity-master/static/icons/site.webmanifest b/blog/themes/hugo-clarity-master/static/icons/site.webmanifest
deleted file mode 100644
index de65106..0000000
--- a/blog/themes/hugo-clarity-master/static/icons/site.webmanifest
+++ /dev/null
@@ -1,19 +0,0 @@
-{
- "name": "",
- "short_name": "",
- "icons": [
- {
- "src": "/android-chrome-192x192.png",
- "sizes": "192x192",
- "type": "image/png"
- },
- {
- "src": "/android-chrome-256x256.png",
- "sizes": "256x256",
- "type": "image/png"
- }
- ],
- "theme_color": "#ffffff",
- "background_color": "#ffffff",
- "display": "standalone"
-}
diff --git a/blog/themes/hugo-clarity-master/static/images/broken-image-error-msg.png b/blog/themes/hugo-clarity-master/static/images/broken-image-error-msg.png
deleted file mode 100644
index 06293a9..0000000
Binary files a/blog/themes/hugo-clarity-master/static/images/broken-image-error-msg.png and /dev/null differ
diff --git a/blog/themes/hugo-clarity-master/static/images/night-moon.jpg b/blog/themes/hugo-clarity-master/static/images/night-moon.jpg
deleted file mode 100644
index cfa8bb3..0000000
Binary files a/blog/themes/hugo-clarity-master/static/images/night-moon.jpg and /dev/null differ
diff --git a/blog/themes/hugo-clarity-master/static/images/sun.svg b/blog/themes/hugo-clarity-master/static/images/sun.svg
deleted file mode 100644
index cddceed..0000000
--- a/blog/themes/hugo-clarity-master/static/images/sun.svg
+++ /dev/null
@@ -1,70 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/blog/themes/hugo-clarity-master/theme.toml b/blog/themes/hugo-clarity-master/theme.toml
deleted file mode 100644
index d5fa81b..0000000
--- a/blog/themes/hugo-clarity-master/theme.toml
+++ /dev/null
@@ -1,16 +0,0 @@
-name = "Clarity"
-license = "MIT"
-licenselink = "https://github.com/chipzoller/hugo-clarity/blob/master/LICENSE.md"
-description = "A theme based on VMware's Clarity Design System for publishing technical blogs with Hugo."
-homepage = "https://github.com/chipzoller/hugo-clarity"
-demosite = "https://neonmirrors.net/"
-tags = ["blog", "technical", "simple", "dark", "syntax highlighting"]
-features = ["blog", "technical", "simple", "dark", "syntax highlighting"]
-min_version = "0.91.0"
-
-# If the theme has multiple authors
-authors = [
- {name = "Chip Zoller", homepage = "https://neonmirrors.net"},
- {name = "Dan Weru", homepage = "https://github.com/onweru"},
- {name = "Ivan Boothe", homepage = "https://rootwork.org"},
-]