+ {{ if eq .Params.icontype "simple" -}}
+
+ {{ else -}}
{{- .Params.icon | default "article" }}
+ {{ end -}}
{{ if .Draft }}DRAFT{{ end }}
{{ if .IsSection }}folder{{ end }}
diff --git a/layouts/partials/docs/head.html b/layouts/partials/docs/head.html
index fdef7401..45ee56b9 100644
--- a/layouts/partials/docs/head.html
+++ b/layouts/partials/docs/head.html
@@ -56,6 +56,12 @@
{{ end }}
{{- partialCached "google-fonts" . }}
+
+
+ {{ if eq .Site.Params.docs.simpleIcons true -}}
+
+ {{ end -}}
+
{{- $options := dict "enableSourceMap" true }}
{{- if hugo.IsProduction}}
diff --git a/layouts/partials/docs/sidebar.html b/layouts/partials/docs/sidebar.html
index 7e8282d2..67579ca2 100644
--- a/layouts/partials/docs/sidebar.html
+++ b/layouts/partials/docs/sidebar.html
@@ -19,7 +19,11 @@
diff --git a/layouts/partials/helpers/icon.html b/layouts/partials/helpers/icon.html
new file mode 100644
index 00000000..de29eb4a
--- /dev/null
+++ b/layouts/partials/helpers/icon.html
@@ -0,0 +1,12 @@
+{{ define "partials/icon.html" }}
+{{- $iconName := .name -}}
+{{- $type := .type | default "material" -}}
+{{- $class := .class | default "" -}}
+{{- $size := .size | default "" -}}
+
+{{- if eq $type "material" -}}
+{{- $iconName -}}
+{{- else if eq $type "simple" -}}
+
+{{- end -}}
+{{ end }}
\ No newline at end of file