diff --git a/docs/content/guides/operations/control-plane/traces/jaeger/index.md b/docs/content/guides/operations/control-plane/traces/jaeger/index.md
index 9b4ebdbf3..990781622 100644
--- a/docs/content/guides/operations/control-plane/traces/jaeger/index.md
+++ b/docs/content/guides/operations/control-plane/traces/jaeger/index.md
@@ -3,7 +3,6 @@ type: docs
title: "How-To: Set up Jaeger for distributed tracing"
linkTitle: "Jaeger"
description: "Learn how to deploy and set up Jaeger for distributed tracing"
-type: docs
categories: "How-To"
tags: ["tracing", "observability"]
---
diff --git a/docs/content/guides/operations/control-plane/traces/zipkin/index.md b/docs/content/guides/operations/control-plane/traces/zipkin/index.md
index cff6525cd..ba4ae41c4 100644
--- a/docs/content/guides/operations/control-plane/traces/zipkin/index.md
+++ b/docs/content/guides/operations/control-plane/traces/zipkin/index.md
@@ -3,7 +3,6 @@ type: docs
title: "How-To: Set up Zipkin for distributed tracing"
linkTitle: "Zipkin"
description: "Learn how to deploy and set up Zipkin for distributed tracing"
-type: docs
categories: "How-To"
tags: ["tracing", "observability"]
---
diff --git a/docs/layouts/_default/content.html b/docs/layouts/_default/content.html
new file mode 100644
index 000000000..9aa8ff773
--- /dev/null
+++ b/docs/layouts/_default/content.html
@@ -0,0 +1,20 @@
+
+
{{ .Title }}
+ {{ with .Params.description }}
{{ . | markdownify }}
{{ end }}
+
+ {{ partial "taxonomy_terms_article_wrapper.html" . }}
+ {{ if (and (not .Params.hide_readingtime) (.Site.Params.ui.readingtime.enable)) }}
+ {{ partial "reading-time.html" . }}
+ {{ end }}
+
+ {{ .Content }}
+ {{ if (and (not .Params.hide_feedback) (.Site.Params.ui.feedback.enable) (.Site.Config.Services.GoogleAnalytics.ID)) }}
+ {{ partial "feedback.html" .Site.Params.ui.feedback }}
+
+ {{ end }}
+ {{ if (.Site.Config.Services.Disqus.Shortname) }}
+
+ {{ partial "disqus-comment.html" . }}
+ {{ end }}
+ {{ partial "page-meta-lastmod.html" . }}
+
diff --git a/docs/layouts/_default/list.rss.xml b/docs/layouts/_default/list.rss.xml
new file mode 100644
index 000000000..2d036095b
--- /dev/null
+++ b/docs/layouts/_default/list.rss.xml
@@ -0,0 +1,43 @@
+
+
{{ .Title }}
+ {{ with .Params.description }}
{{ . | markdownify }}
{{ end }}
+
+ {{ partial "taxonomy_terms_article_wrapper.html" . }}
+ {{ if (and (not .Params.hide_readingtime) (.Site.Params.ui.readingtime.enable)) }}
+ {{ partial "reading-time.html" . }}
+ {{ end }}
+
+ {{ .Content }}
+ {{ partial "section-index.html" . }}
+ {{ if (and (not .Params.hide_feedback) (.Site.Params.ui.feedback.enable) (.Site.Config.Services.GoogleAnalytics.ID)) }}
+ {{ partial "feedback.html" .Site.Params.ui.feedback }}
+
+ {{ end }}
+ {{ if (.Site.Config.Services.Disqus.Shortname) }}
+
+ {{ partial "disqus-comment.html" . }}
+ {{ end }}
+ {{ partial "page-meta-lastmod.html" . }}
+
+{{ end }}
diff --git a/docs/layouts/partials/head.html b/docs/layouts/partials/head.html
new file mode 100644
index 000000000..0455c148d
--- /dev/null
+++ b/docs/layouts/partials/head.html
@@ -0,0 +1,50 @@
+
+
{{ .Title }}
+ {{ with .Params.description }}
{{ . | markdownify }}
{{ end }}
+
+ {{ partial "taxonomy_terms_article_wrapper.html" . }}
+ {{ if (and (not .Params.hide_readingtime) (.Site.Params.ui.readingtime.enable)) }}
+ {{ partial "reading-time.html" . }}
+ {{ end }}
+
+ {{ .Content }}
+ {{ partial "section-index.html" . }}
+ {{ if (and (not .Params.hide_feedback) (.Site.Params.ui.feedback.enable) (.Site.Config.Services.GoogleAnalytics.ID)) }}
+ {{ partial "feedback.html" .Site.Params.ui.feedback }}
+
+ {{ end }}
+ {{ if (.Site.Config.Services.Disqus.Shortname) }}
+
+ {{ partial "disqus-comment.html" . }}
+ {{ end }}
+ {{ partial "page-meta-lastmod.html" . }}
+
+{{ end }}