+ {{ if (and (not .Params.hide_readingtime) (.Site.Params.ui.readingtime.enable)) -}}
+ {{ partial "reading-time.html" . -}}
+ {{ end -}}
{{ . | markdownify }}
{{ .Content }}
{{ if (.Site.Params.DisqusShortname) -}}
diff --git a/_vendor/github.com/google/docsy/layouts/docs/list.html b/_vendor/github.com/google/docsy/layouts/docs/list.html
index 9c23159..bea6271 100644
--- a/_vendor/github.com/google/docsy/layouts/docs/list.html
+++ b/_vendor/github.com/google/docsy/layouts/docs/list.html
@@ -1,12 +1,12 @@
{{ define "main" }}
+ {{ if (and (not .Params.hide_readingtime) (.Site.Params.ui.readingtime.enable)) -}}
+ {{ partial "reading-time.html" . -}}
+ {{ end -}}
{{ .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" . -}}
diff --git a/_vendor/github.com/google/docsy/layouts/partials/breadcrumb.html b/_vendor/github.com/google/docsy/layouts/partials/breadcrumb.html
index ac51d3a..a04bab2 100644
--- a/_vendor/github.com/google/docsy/layouts/partials/breadcrumb.html
+++ b/_vendor/github.com/google/docsy/layouts/partials/breadcrumb.html
@@ -4,7 +4,7 @@
{{ end -}}
diff --git a/_vendor/github.com/google/docsy/layouts/swagger/list.html b/_vendor/github.com/google/docsy/layouts/swagger/list.html
index f5dd7d1..273bfe4 100644
--- a/_vendor/github.com/google/docsy/layouts/swagger/list.html
+++ b/_vendor/github.com/google/docsy/layouts/swagger/list.html
@@ -1,12 +1,12 @@
{{ define "main" }}
+ {{ if (and (not .Params.hide_readingtime) (.Site.Params.ui.readingtime.enable)) -}}
+ {{ partial "reading-time.html" . -}}
+ {{ end -}}
{{ .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" . -}}
diff --git a/assets/scss/docsy_overrides.scss b/assets/scss/docsy_overrides.scss
index f691de3..0a7e8be 100644
--- a/assets/scss/docsy_overrides.scss
+++ b/assets/scss/docsy_overrides.scss
@@ -162,4 +162,9 @@ li:has(input[type="checkbox"]) {
.carousel-control-next, .carousel-control-prev {
background-image: none;
+}
+
+.reading-time {
+ font-weight: 600 !important;
+ margin-bottom: .5rem !important;
}
\ No newline at end of file
diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html
index 009d638..938d559 100644
--- a/layouts/partials/footer.html
+++ b/layouts/partials/footer.html
@@ -1,6 +1,5 @@
{{ $links := .Site.Params.links }}