mirror of
https://github.com/alex-shpak/hugo-book.git
synced 2024-11-22 03:19:25 +00:00
Update disqus support, add global site config BookDisqus
This commit is contained in:
parent
36a8cf5169
commit
ec53e2733f
@ -168,6 +168,11 @@ disableKinds = ['taxonomy', 'taxonomyTerm']
|
||||
# (Optional, default true) Enables search function with flexsearch,
|
||||
# Index is built on fly, therefore it might slowdown your website.
|
||||
BookSearch = true
|
||||
|
||||
# (Optional, default true) Enables disqus template on pages
|
||||
# See https://gohugo.io/content-management/comments/#configure-disqus
|
||||
# Can be overwritten by same param in page frontmatter
|
||||
BookDisqus = true
|
||||
```
|
||||
|
||||
### Multi-Language Support
|
||||
@ -196,8 +201,8 @@ bookHidden = true
|
||||
# (Optional) Set how many levels of ToC to show. use 'false' to hide ToC completely
|
||||
bookToC = 3
|
||||
|
||||
# If you have enabled Disqus for the site, you can disable it for specific pages.
|
||||
bookDisableComments = true
|
||||
# (Optional) If you have enabled Disqus for the site, you can disable it for specific pages.
|
||||
bookDisqus = true
|
||||
```
|
||||
|
||||
### Partials
|
||||
|
@ -72,3 +72,7 @@ enableGitInfo = true
|
||||
# Index is built on fly, therefore it might slowdown your website.
|
||||
BookSearch = true
|
||||
|
||||
# (Optional, default true) Enables disqus template on pages
|
||||
# See https://gohugo.io/content-management/comments/#configure-disqus
|
||||
# Can be overwritten by same param in page frontmatter
|
||||
BookDisqus = true
|
||||
|
@ -69,3 +69,8 @@ params:
|
||||
# (Optional, default true) Enables search function with flexsearch,
|
||||
# Index is built on fly, therefore it might slowdown your website.
|
||||
BookSearch: true
|
||||
|
||||
# (Optional, default true) Enables disqus template on pages
|
||||
# See https://gohugo.io/content-management/comments/#configure-disqus
|
||||
# Can be overwritten by same param in page frontmatter
|
||||
BookDisqus: true
|
||||
|
File diff suppressed because one or more lines are too long
@ -1 +1 @@
|
||||
{"Target":"book.min.68d45956421753cdf6bcfc865ede445c56afc5bcaaebfe02961f44fe77d8f45a.css","MediaType":"text/css","Data":{"Integrity":"sha256-aNRZVkIXU832vPyGXt5EXFavxbyq6/4Clh9E/nfY9Fo="}}
|
||||
{"Target":"book.min.2f0632dc31655f852f191d7c354e584af6f6ca239af70afdd117bbe5950815b2.css","MediaType":"text/css","Data":{"Integrity":"sha256-LwYy3DFlX4UvGR18NU5YSvb2yiOa9wr90Re75ZUIFbI="}}
|
@ -26,6 +26,6 @@
|
||||
|
||||
</div>
|
||||
|
||||
{{ if and (not (eq .Site.DisqusShortname "")) (not .Params.bookDisableComments ) }}
|
||||
{{ if (default true (default .Site.Params.BookDisqus .Params.bookDisqus)) }}
|
||||
{{ template "_internal/disqus.html" . }}
|
||||
{{ end }}
|
||||
|
@ -6,7 +6,7 @@ license = "MIT"
|
||||
licenselink = "https://github.com/alex-shpak/hugo-book/blob/master/LICENSE"
|
||||
description = "Hugo documentation theme as simple as plain book"
|
||||
homepage = "https://github.com/alex-shpak/hugo-book"
|
||||
tags = ["responsive", "clean", "documentation", "docs", "flexbox", "search", "mobile", "multilingual"]
|
||||
tags = ["responsive", "clean", "documentation", "docs", "flexbox", "search", "mobile", "multilingual", "disqus"]
|
||||
features = []
|
||||
min_version = "0.60"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user