Skip to content

Commit

Permalink
update docsy
Browse files Browse the repository at this point in the history
Signed-off-by: Iceber Gu <[email protected]>
  • Loading branch information
Iceber committed Jan 20, 2022
1 parent 752bf3e commit 18801d7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
13 changes: 7 additions & 6 deletions config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ title = "Clusterpedia"
enableRobotsTXT = true

# Hugo allows theme composition (and inheritance). The precedence is from left to right.
theme = ["docsy"]
#[module]
#replacements = "github.com/FortAwesome/Font-Awesome -> ., github.com/twbs/bootstrap -> ."
#[[module.imports]]
#path = "docsy"
# theme = ["docsy"]
[module]
replacements = "github.com/FortAwesome/Font-Awesome -> ., github.com/twbs/bootstrap -> ."
[[module.imports]]
path = "docsy"

# Will give values to .Lastmod etc.
enableGitInfo = true
Expand Down Expand Up @@ -60,10 +60,11 @@ anchor = "smart"
title = "Clusterpedia.io"
description = "Clusterpedia.io website"
languageName ="English"
contentDir = "content/en"
# Weight used for sorting.
weight = 1

[languages.zh]
[languages.zh-cn]
title = "Clusterpedia.io"
description = "Clusterpedia 的官网"
languageName ="中文 Chinese"
Expand Down
2 changes: 1 addition & 1 deletion themes/docsy
Submodule docsy updated 85 files
+5 −3 .gitignore
+3 −0 .gitmodules
+1 −0 .nvmrc
+106 −0 assets/js/drawio.js
+19 −0 assets/js/markmap.js
+1 −1 assets/js/offline-search.js
+14 −3 assets/json/offline-search-index.json
+9 −5 assets/scss/_breadcrumb.scss
+1 −1 assets/scss/_colors.scss
+40 −0 assets/scss/_drawio.scss
+1 −1 assets/scss/_nav.scss
+1 −0 assets/scss/_search.scss
+2 −2 assets/scss/_sidebar-toc.scss
+4 −1 assets/scss/main.scss
+1 −1 assets/vendor/Font-Awesome
+1 −1 assets/vendor/bootstrap
+26 −0 config.toml
+8 −0 go.mod
+4 −0 go.sum
+4 −0 i18n/ar.toml
+4 −0 i18n/bg.toml
+4 −0 i18n/bn.toml
+6 −0 i18n/de.toml
+5 −1 i18n/en.toml
+2 −0 i18n/es.toml
+4 −0 i18n/et.toml
+5 −0 i18n/fa.toml
+6 −4 i18n/fr.toml
+5 −1 i18n/hu.toml
+5 −1 i18n/it.toml
+4 −0 i18n/ja.toml
+4 −0 i18n/ko.toml
+7 −3 i18n/nl.toml
+5 −1 i18n/no.toml
+5 −0 i18n/pl.toml
+5 −1 i18n/pt-br.toml
+5 −1 i18n/ru.toml
+4 −0 i18n/tr.toml
+63 −0 i18n/zh-cn.toml
+10 −2 i18n/zh.toml
+1 −1 layouts/_default/baseof.html
+1 −1 layouts/blog/baseof.html
+1 −1 layouts/blog/list.html
+1 −1 layouts/docs/baseof.html
+1 −5 layouts/docs/baseof.print.html
+25 −18 layouts/partials/breadcrumb.html
+1 −1 layouts/partials/community_links.html
+1 −1 layouts/partials/head-css.html
+38 −31 layouts/partials/head.html
+2 −2 layouts/partials/navbar.html
+8 −5 layouts/partials/page-meta-lastmod.html
+51 −37 layouts/partials/page-meta-links.html
+2 −2 layouts/partials/pager.html
+1 −1 layouts/partials/reading-time.html
+41 −11 layouts/partials/scripts.html
+11 −7 layouts/partials/search-input.html
+1 −0 layouts/partials/section-index.html
+1 −1 layouts/shortcodes/blocks/cover.html
+13 −21 layouts/shortcodes/blocks/feature.html
+5 −2 layouts/shortcodes/tabpane.html
+9 −8 netlify.toml
+11 −0 package.json
+19 −0 static/js/tabpane-persist.js
+ userguide/.DS_Store
+3 −5 userguide/.gitignore
+0 −4 userguide/.gitmodules
+15 −1 userguide/config.toml
+2 −2 userguide/content/en/about/_index.md
+10 −1 userguide/content/en/docs/Adding content/content.md
+3 −0 userguide/content/en/docs/Adding content/diagrams-and-formulae/docsy-diagrams.svg
+363 −0 userguide/content/en/docs/Adding content/diagrams-and-formulae/index.md
+37 −2 userguide/content/en/docs/Adding content/feedback.md
+43 −262 userguide/content/en/docs/Adding content/lookandfeel.md
+3 −10 userguide/content/en/docs/Adding content/navigation.md
+115 −13 userguide/content/en/docs/Adding content/repository-links.md
+20 −19 userguide/content/en/docs/Best practices/site-guidance.md
+68 −2 userguide/content/en/docs/Deployment/_index.md
+1 −0 userguide/content/en/docs/Examples/_index.md
+6 −6 userguide/content/en/docs/Getting started/_index.md
+1 −1 userguide/content/en/docs/_index.md
+0 −17 userguide/deploy.sh
+8 −0 userguide/go.mod
+2 −0 userguide/go.sum
+0 −2,355 userguide/package-lock.json
+13 −16 userguide/package.json

0 comments on commit 18801d7

Please sign in to comment.