diff --git a/config/_default/config.toml b/config/_default/config.toml
index 6eb697d5..2298dca1 100644
--- a/config/_default/config.toml
+++ b/config/_default/config.toml
@@ -1,7 +1,7 @@
title = "AxoSyslog 4"
-theme = ["docsy"]
+theme = ["docsy-axoflow", "docsy"]
baseurl = "/"
diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html
deleted file mode 100644
index 5de91ed9..00000000
--- a/layouts/partials/footer.html
+++ /dev/null
@@ -1,36 +0,0 @@
-{{ $links := .Site.Params.links -}}
-
-
-{{- define "footer-links-block" }}
-
-{{ if $gh_url -}}
- {{ warnf "Warning: use of `github_url` is deprecated. For details see https://www.docsy.dev/docs/adding-content/repository-links/#github_url-optional" -}}
-
{{ T "post_edit_this" }}
-{{ else if $gh_repo -}}
- {{ $gh_repo_path := printf "%s/content/%s" $gh_branch $pathFormatted -}}
- {{ if and ($gh_subdir) (.Site.Language.Lang) -}}
- {{ $gh_repo_path = printf "%s/%s/content/%s/%s" $gh_branch $gh_subdir ($.Site.Language.Lang) $pathFormatted -}}
- {{ else if .Site.Language.Lang -}}
-
- {{ $gh_repo_path = printf "%s/content/%s" $gh_branch $pathFormatted -}}
-
- {{ else if $gh_subdir -}}
- {{ $gh_repo_path = printf "%s/%s/content/%s" $gh_branch $gh_subdir $pathFormatted -}}
- {{ end -}}
-
- {{/* Adjust $gh_repo_path based on path_base_for_github_subdir */ -}}
- {{ $ghs_base := $.Param "path_base_for_github_subdir" -}}
- {{ $ghs_rename := "" -}}
- {{ if reflect.IsMap $ghs_base -}}
- {{ $ghs_rename = $ghs_base.to -}}
- {{ $ghs_base = $ghs_base.from -}}
- {{ end -}}
- {{ with $ghs_base -}}
- {{ $gh_repo_path = replaceRE . $ghs_rename $gh_repo_path -}}
- {{ end -}}
-
- {{ $viewURL := printf "%s/tree/%s" $gh_repo $gh_repo_path -}}
- {{ $editURL := printf "%s/edit/%s" $gh_repo $gh_repo_path -}}
- {{ $issuesURL := printf "%s/issues/new?title=%s" $gh_repo (safeURL $.Title ) -}}
- {{ $newPageStub := resources.Get "stubs/new-page-template.md" -}}
- {{ $newPageQS := querify "value" $newPageStub.Content "filename" "change-me.md" | safeURL -}}
- {{ $newPageURL := printf "%s/new/%s?%s" $gh_repo $gh_repo_path $newPageQS -}}
-
-
{{ T "post_view_this" }}
-
{{ T "post_edit_this" }}
-
{{ T "post_create_child_page" }}
-
{{ T "post_create_issue" }}
- {{ with $gh_project_repo -}}
- {{ $project_issueURL := printf "%s/issues/new" . -}}
-
{{ T "post_create_project_issue" }}
- {{ end -}}
-
-{{ end -}}
-{{ with .CurrentSection.AlternativeOutputFormats.Get "print" -}}
-
{{ T "print_entire_section" }}
-{{ end }}
-
-{{ end -}}
diff --git a/layouts/partials/scripts.html b/layouts/partials/scripts.html
deleted file mode 100644
index 38257b3e..00000000
--- a/layouts/partials/scripts.html
+++ /dev/null
@@ -1,138 +0,0 @@
-{{ $needKaTeX := or .Site.Params.katex.enable .Params.math .Params.chem -}}
-{{ $needmhchem := or .Site.Params.katex.mhchem.enable .Params.chem -}}
-{{ $needmermaid := .Site.Params.mermaid.enable -}}
-{{ if ge hugo.Version "0.93.0" -}}
- {{ with .Site.Params.mermaid }}
- {{ $needmermaid = true }}
- {{ end }}
- {{ $needKaTeX = or $needKaTeX (.Page.Store.Get "hasKaTeX") (.Page.Store.Get "hasmhchem") -}}
- {{ $needmhchem = or $needmhchem (.Page.Store.Get "hasmhchem") -}}
- {{ $needmermaid = or $needmermaid (.Page.Store.Get "hasmermaid") -}}
-{{ else -}}
- {{ if or $needKaTeX $needmhchem $needmermaid -}}
- {{ warnf "Outdated Hugo version %s, consider upgrading to make full use of all theme features" hugo.Version }}
- {{ end -}}
-{{ end -}}
-
-{{ if .Site.Params.markmap.enable -}}
-
-
-
-{{ end -}}
-
-{{ if .Site.Params.plantuml.enable -}}
-
-{{ end -}}
-
-{{ if $needKaTeX -}}
-{{/* load stylesheet and scripts for KaTeX support */ -}}
-
- {{ . }}
-
- {{ end -}}
-{{ end -}}
diff --git a/layouts/shortcodes/include-code.html b/layouts/shortcodes/include-code.html
deleted file mode 100644
index 53f0b59b..00000000
--- a/layouts/shortcodes/include-code.html
+++ /dev/null
@@ -1,29 +0,0 @@
-{{- $file := .Get 0 -}}
-{{- $ext := (.Get 1 | default "bash" ) -}}
-{{- $opts := .Get 2 -}}
-{{- $url := "" -}}
-{{- $found_file := false -}}
-
-{{ if (fileExists (print .Page.File.Dir $file)) -}}
-
- {{- $url = (print .Page.Site.BaseURL .Page.File.Dir $file) -}}
- {{- $found_file = true -}}
-{{ else }}
- {{ if (fileExists $file) -}}
-
- {{- $url = (print .Page.Site.BaseURL $file) -}}
- {{- $found_file = true -}}
- {{- end }}
-{{- end }}
-
-{{ if not $found_file -}}
- {{ if in $opts "optional" }}
- {{- warnf "Cannot find file to include %q %s" $file .Position -}}
- {{ else if in $opts "suppress" }}
-
- {{ else }}
- {{- errorf "Cannot find file to include %q %s" $file .Position -}}
- {{- end }}
-{{- end }}
-
-