diff --git a/assets/css/custom.css b/assets/css/custom.css index 343e658d..bb756f05 100644 --- a/assets/css/custom.css +++ b/assets/css/custom.css @@ -544,4 +544,296 @@ ul.share li i { .container .changeicon .nav-item .dropdown-item a { top: 0 !important; } +} + +/************************************************* + * Dark Mode - Documentation Section + * Color Scheme: + * Background: #1C1F24 + * Sidebar & Header: #22262B + * Primary Text: #EAEAEA + * Secondary Text: #B9BEC5 + * Muted Text: #8B9098 + * Accent Color: #F97316 + * Borders: #323842 + * Hover/Active: #2A2F36 + **************************************************/ + +/* Dark mode for documentation container */ +body.dark .container-fluid.docs { + background-color: #1C1F24; +} + +/* Dark mode for documentation sidebar */ +body.dark .docs-sidebar { + background-color: #22262B; + border-right-color: #323842; + border-bottom-color: #323842; +} + +/* Dark mode for sidebar navigation */ +body.dark .docs-sidebar .nav > li > a { + color: #B9BEC5; +} + +body.dark .docs-sidebar .nav > li > a:hover { + color: #EAEAEA; + background-color: transparent; +} + +/* Dark mode for active sidebar items */ +body.dark .docs-sidebar .docs-toc-item.active a, +body.dark .docs-sidebar .nav > .active:hover > a, +body.dark .docs-sidebar .nav > .active > a { + color: #F97316; + font-weight: bold; + background-color: #2A2F36; +} + +/* Dark mode for sidebar search */ +body.dark .docs-search .form-control { + background-color: #323842; + border-color: #323842; + color: #EAEAEA; +} + +body.dark .docs-search .form-control::placeholder { + color: #8B9098; +} + +body.dark .docs-search .form-control:focus { + background-color: #323842; + border-color: #F97316; + color: #EAEAEA; + box-shadow: 0 0 0 0.2rem rgba(249, 115, 22, 0.25); +} + +body.dark .docs-toggle { + color: #F97316; + background-color: transparent; +} + +/* Dark mode for documentation content */ +body.dark .docs-content { + background-color: #1C1F24; + color: #EAEAEA; +} + +body.dark .docs-article-container { + background-color: #1C1F24; +} + +body.dark .docs-article-container h1 { + color: #EAEAEA; +} + +body.dark .docs-article-container h2 { + color: #EAEAEA; + border-bottom-color: #323842; +} + +body.dark .docs-article-container h3, +body.dark .docs-article-container h4, +body.dark .docs-article-container h5, +body.dark .docs-article-container h6 { + color: #EAEAEA; +} + +/* Dark mode for documentation body text */ +body.dark .docs-article-container p { + color: #B9BEC5; +} + +body.dark .body-footer { + color: #8B9098; + border-top-color: #323842; +} + +/* Dark mode for documentation links */ +body.dark .docs-article-container a { + color: #F97316; + text-decoration: none; +} + +body.dark .docs-article-container a:hover { + color: #FB923C; + text-decoration: underline; +} + +/* Dark mode for code blocks in documentation */ +body.dark .docs-article-container pre { + background-color: #323842; + border-color: #323842; + color: #EAEAEA; +} + +body.dark .docs-article-container code { + background-color: #323842; + color: #F97316; + border-color: #323842; +} + +/* Dark mode for inline code in docs */ +body.dark .docs-article-container p code { + color: #F97316; + background-color: #323842; +} + +/* Dark mode for tables in documentation */ +body.dark .docs-article-container table { + background-color: transparent; + border-color: #323842; +} + +body.dark .docs-article-container table th { + background-color: #22262B; + color: #EAEAEA; + border-color: #323842; +} + +body.dark .docs-article-container table td { + border-color: #323842; + color: #B9BEC5; +} + +body.dark .docs-article-container table tr:hover { + background-color: #2A2F36; +} + +/* Dark mode for blockquotes in documentation */ +body.dark .docs-article-container blockquote { + border-left-color: #F97316; + color: #B9BEC5; + background-color: #22262B; +} + +/* Dark mode for lists in documentation */ +body.dark .docs-article-container ul, +body.dark .docs-article-container ol { + color: #B9BEC5; +} + +body.dark .docs-article-container li { + color: #B9BEC5; +} + +/* Dark mode for documentation TOC (Table of Contents) */ +body.dark .docs-toc { + background-color: #1C1F24; +} + +body.dark .docs-toc-title { + color: #EAEAEA; +} + +body.dark .docs-toc nav ul > li > a { + color: #B9BEC5; +} + +body.dark .docs-toc nav ul > li > a:hover { + color: #EAEAEA; +} + +body.dark .docs-toc nav ul > li.nav-item.active > a { + color: #F97316; + font-weight: bold; +} + +/* Dark mode for TOC links */ +body.dark .toc-top a { + color: #F97316; +} + +body.dark .toc-top a:hover { + color: #FB923C; +} + +/* Dark mode for article tags in documentation */ +body.dark .article-tags { + border-top-color: #323842; +} + +body.dark .article-tags a { + color: #F97316; + background-color: #22262B; +} + +body.dark .article-tags a:hover { + background-color: #2A2F36; + color: #FB923C; +} + +/* Dark mode for related articles widget */ +body.dark .article-widget { + background-color: #22262B; + border-color: #323842; +} + +body.dark .article-widget h3, +body.dark .article-widget h4 { + color: #EAEAEA; +} + +body.dark .article-widget ul li a { + color: #F97316; +} + +body.dark .article-widget ul li a:hover { + color: #FB923C; +} + +body.dark .hr-light { + border-color: #323842; +} + +/* Dark mode for documentation alerts/notes */ +body.dark .docs-article-container .alert { + background-color: #22262B; + border-color: #323842; + color: #B9BEC5; +} + +body.dark .docs-article-container .alert-info { + background-color: #22262B; + border-color: #F97316; + color: #EAEAEA; +} + +body.dark .docs-article-container .alert-warning { + background-color: #22262B; + border-color: #F97316; + color: #EAEAEA; +} + +body.dark .docs-article-container .alert-danger { + background-color: #22262B; + border-color: #F97316; + color: #EAEAEA; +} + +body.dark .docs-article-container .alert-success { + background-color: #22262B; + border-color: #F97316; + color: #EAEAEA; +} + +/* Dark mode for images in documentation */ +body.dark .docs-article-container img { + border-color: #323842; +} + +/* Dark mode for documentation footer */ +body.dark .docs-article-container footer { + border-top-color: #323842; + color: #8B9098; +} + +/* Dark mode for documentation container fluid */ +body.dark .container-fluid { + background-color: #1C1F24; +} + +/* Dark mode for row in docs */ +body.dark .container-fluid.docs .row { + background-color: #1C1F24; } \ No newline at end of file diff --git a/config/_default/config.toml b/config/_default/config.toml index 77fadb04..e3d120c4 100644 --- a/config/_default/config.toml +++ b/config/_default/config.toml @@ -36,7 +36,9 @@ defaultContentLanguage = "en" hasCJKLanguage = true # Set `true` for Chinese/Japanese/Korean languages. defaultContentLanguageInSubdir = true -paginate = 10 # Number of items per page in paginated lists. +[pagination] + pagerSize = 10 + enableEmoji = false footnotereturnlinkcontents = "^" ignoreFiles = ["\\.Rmd$", "\\.Rmarkdown$", "_files$", "_cache$"] diff --git a/content/en/blog/1.4 release-en.md b/content/en/blog/1.4 release-en.md index e8cd5383..ae6c91ab 100644 --- a/content/en/blog/1.4 release-en.md +++ b/content/en/blog/1.4 release-en.md @@ -7,7 +7,7 @@ date = 2021-08-31 lastmod = 2021-09-13 datemonth = "Sep" dateyear = "2021" -dateday = 13 +dateday = "13" draft = false # Is this a draft? true/false toc = true # Show table of contents? true/false diff --git a/content/en/blog/ING_case-en.md b/content/en/blog/ING_case-en.md index 2daa1f14..4f08eae4 100644 --- a/content/en/blog/ING_case-en.md +++ b/content/en/blog/ING_case-en.md @@ -7,7 +7,7 @@ date = 2022-12-28 lastmod = 2022-12-28 datemonth = "Dec" dateyear = "2022" -dateday = 28 +dateday = "28" draft = false # Is this a draft? true/false toc = true # Show table of contents? true/false diff --git a/content/en/blog/Meet Cloud Native Batch Computing with Volcano in AI & Big Data Scenarios.md b/content/en/blog/Meet Cloud Native Batch Computing with Volcano in AI & Big Data Scenarios.md index 1dbacf7c..6d959d46 100644 --- a/content/en/blog/Meet Cloud Native Batch Computing with Volcano in AI & Big Data Scenarios.md +++ b/content/en/blog/Meet Cloud Native Batch Computing with Volcano in AI & Big Data Scenarios.md @@ -7,7 +7,7 @@ date = 2024-03-08 lastmod = 2024-03-08 datemonth = "Mar" dateyear = "2024" -dateday = 08 +dateday = "08" draft = false # Is this a draft? true/false toc = true # Show table of contents? true/false diff --git a/content/en/blog/Quick-Start-Volcano.md b/content/en/blog/Quick-Start-Volcano.md index 2392a6f0..2921b013 100644 --- a/content/en/blog/Quick-Start-Volcano.md +++ b/content/en/blog/Quick-Start-Volcano.md @@ -7,7 +7,7 @@ date = 2019-03-28 lastmod = 2019-03-29 datemonth = "Mar" dateyear = "2019" -dateday = 28 +dateday = "28" draft = false # Is this a draft? true/false toc = true # Show table of contents? true/false diff --git a/content/en/blog/Volcano-1.10.0-release.md b/content/en/blog/Volcano-1.10.0-release.md index 87f558b2..26b641ba 100644 --- a/content/en/blog/Volcano-1.10.0-release.md +++ b/content/en/blog/Volcano-1.10.0-release.md @@ -7,7 +7,7 @@ date = 2024-09-29 lastmod = 2024-09-29 datemonth = "Sep" dateyear = "2024" -dateday = 29 +dateday = "29" draft = false # Is this a draft? true/false toc = true # Show table of contents? true/false diff --git a/content/en/blog/Volcano-1.11.0-release.md b/content/en/blog/Volcano-1.11.0-release.md index 6afa798c..2a51ebc8 100644 --- a/content/en/blog/Volcano-1.11.0-release.md +++ b/content/en/blog/Volcano-1.11.0-release.md @@ -7,7 +7,7 @@ date = 2025-02-07 lastmod = 2025-02-07 datemonth = "Feb" dateyear = "2025" -dateday = 07 +dateday = "07" draft = false # Is this a draft? true/false toc = true # Show table of contents? true/false diff --git a/content/en/blog/Volcano-1.12.0-release.md b/content/en/blog/Volcano-1.12.0-release.md index cde626ed..07723bd5 100644 --- a/content/en/blog/Volcano-1.12.0-release.md +++ b/content/en/blog/Volcano-1.12.0-release.md @@ -7,7 +7,7 @@ date = 2025-06-12 lastmod = 2025-06-12 datemonth = "June" dateyear = "2025" -dateday = 12 +dateday = "12" draft = false # Is this a draft? true/false toc = true # Show table of contents? true/false diff --git a/content/en/blog/Volcano-1.13.0-release.md b/content/en/blog/Volcano-1.13.0-release.md index b07a3d24..8766aa46 100644 --- a/content/en/blog/Volcano-1.13.0-release.md +++ b/content/en/blog/Volcano-1.13.0-release.md @@ -7,7 +7,7 @@ date = 2025-09-29 lastmod = 2025-09-29 datemonth = "Sep" dateyear = "2025" -dateday = 29 +dateday = "29" draft = false # Is this a draft? true/false toc = true # Show table of contents? true/false diff --git a/content/en/blog/Volcano-1.7.0-release-en.md b/content/en/blog/Volcano-1.7.0-release-en.md index 881dd6cd..eb34e291 100644 --- a/content/en/blog/Volcano-1.7.0-release-en.md +++ b/content/en/blog/Volcano-1.7.0-release-en.md @@ -7,7 +7,7 @@ date = 2023-01-12 lastmod = 2023-01-12 datemonth = "Jan" dateyear = "2023" -dateday = 12 +dateday = "12" draft = false # Is this a draft? true/false toc = true # Show table of contents? true/false diff --git a/content/en/blog/Volcano-1.8.2-release.md b/content/en/blog/Volcano-1.8.2-release.md index 3cd7f34b..be792fdf 100644 --- a/content/en/blog/Volcano-1.8.2-release.md +++ b/content/en/blog/Volcano-1.8.2-release.md @@ -7,7 +7,7 @@ date = 2024-01-31 lastmod = 2024-01-31 datemonth = "Jan" dateyear = "2024" -dateday = 31 +dateday = "31" draft = false # Is this a draft? true/false toc = true # Show table of contents? true/false diff --git a/content/en/blog/Volcano-1.9.0-release.md b/content/en/blog/Volcano-1.9.0-release.md index 75a76f3c..1e532704 100644 --- a/content/en/blog/Volcano-1.9.0-release.md +++ b/content/en/blog/Volcano-1.9.0-release.md @@ -7,7 +7,7 @@ date = 2024-05-21 lastmod = 2024-05-21 datemonth = "May" dateyear = "2024" -dateday = 21 +dateday = "21" draft = false # Is this a draft? true/false toc = true # Show table of contents? true/false diff --git a/content/en/blog/Volcano-community-co-construction-program.md b/content/en/blog/Volcano-community-co-construction-program.md index 940497aa..25535b2b 100644 --- a/content/en/blog/Volcano-community-co-construction-program.md +++ b/content/en/blog/Volcano-community-co-construction-program.md @@ -7,7 +7,7 @@ date = 2023-08-11 lastmod = 2023-08-11 datemonth = "Aug" dateyear = "2023" -dateday = 11 +dateday = "11" draft = false # Is this a draft? true/false toc = true # Show table of contents? true/false diff --git a/content/en/blog/aiqiyi-en.md b/content/en/blog/aiqiyi-en.md index 6e3916ff..1fe82427 100644 --- a/content/en/blog/aiqiyi-en.md +++ b/content/en/blog/aiqiyi-en.md @@ -7,7 +7,7 @@ date = 2020-09-30 lastmod = 2021-08-25 datemonth = "Aug" dateyear = "2021" -dateday = 25 +dateday = "25" draft = false # Is this a draft? true/false toc = true # Show table of contents? true/false diff --git a/content/en/blog/how-volcano-boosts-distributed-training-and-inference-performance.md b/content/en/blog/how-volcano-boosts-distributed-training-and-inference-performance.md index 77699dcf..c91dc2c1 100644 --- a/content/en/blog/how-volcano-boosts-distributed-training-and-inference-performance.md +++ b/content/en/blog/how-volcano-boosts-distributed-training-and-inference-performance.md @@ -7,7 +7,7 @@ date = 2025-04-01 lastmod = 2025-04-01 datemonth = "Apr" dateyear = "2025" -dateday = 01 +dateday = "01" draft = false # Is this a draft? true/false toc = true # Show table of contents? true/false diff --git a/content/en/blog/hpc-en.md b/content/en/blog/hpc-en.md index b5995658..f25a27bb 100644 --- a/content/en/blog/hpc-en.md +++ b/content/en/blog/hpc-en.md @@ -7,7 +7,7 @@ date = 2020-10-27 lastmod = 2021-08-24 datemonth = "Aug" dateyear = "2021" -dateday = 24 +dateday = "24" draft = false # Is this a draft? true/false toc = true # Show table of contents? true/false diff --git a/content/en/blog/iflytek_case_study.md b/content/en/blog/iflytek_case_study.md index 8662a223..940058ec 100644 --- a/content/en/blog/iflytek_case_study.md +++ b/content/en/blog/iflytek_case_study.md @@ -7,7 +7,7 @@ date = 2025-06-13 lastmod = 2025-06-13 datemonth = "June" dateyear = "2025" -dateday = 13 +dateday = "13" draft = false # Is this a draft? true/false toc = true # Show table of contents? true/false diff --git a/content/en/blog/introducing-kthena-redefining-llm-inference-for-the-cloud-native-era.md b/content/en/blog/introducing-kthena-redefining-llm-inference-for-the-cloud-native-era.md index 45c45dad..8bfa44c5 100644 --- a/content/en/blog/introducing-kthena-redefining-llm-inference-for-the-cloud-native-era.md +++ b/content/en/blog/introducing-kthena-redefining-llm-inference-for-the-cloud-native-era.md @@ -7,7 +7,7 @@ date = 2026-01-06 lastmod = 2026-01-06 datemonth = "Jan" dateyear = "2026" -dateday = 6 +dateday = "6" draft = false toc = true diff --git a/content/en/blog/kube-batch-customers.md b/content/en/blog/kube-batch-customers.md index a0f576c3..1f808f63 100644 --- a/content/en/blog/kube-batch-customers.md +++ b/content/en/blog/kube-batch-customers.md @@ -7,7 +7,7 @@ date = 2019-01-28 lastmod = 2019-01-29 datemonth = "Jan" dateyear = "2019" -dateday = 29 +dateday = "29" draft = false # Is this a draft? true/false toc = true # Show table of contents? true/false diff --git a/content/en/blog/kube-batch-startup.md b/content/en/blog/kube-batch-startup.md index 73c67e24..52b32654 100644 --- a/content/en/blog/kube-batch-startup.md +++ b/content/en/blog/kube-batch-startup.md @@ -7,7 +7,7 @@ date = 2019-01-28 lastmod = 2019-01-29 datemonth = "Jan" dateyear = "2019" -dateday = 29 +dateday = "29" draft = false # Is this a draft? true/false toc = true # Show table of contents? true/false diff --git a/content/en/blog/leinao-en.md b/content/en/blog/leinao-en.md index 032e5c51..378cac32 100644 --- a/content/en/blog/leinao-en.md +++ b/content/en/blog/leinao-en.md @@ -7,7 +7,7 @@ date = 2020-12-24 lastmod = 2021-08-23 datemonth = "Dec" dateyear = "2020" -dateday = 23 +dateday = "23" draft = false # Is this a draft? true/false toc = true # Show table of contents? true/false diff --git a/content/en/blog/paddlepaddle-en.md b/content/en/blog/paddlepaddle-en.md index b8572131..1b90fcd2 100644 --- a/content/en/blog/paddlepaddle-en.md +++ b/content/en/blog/paddlepaddle-en.md @@ -7,7 +7,7 @@ date = 2019-11-06 lastmod = 2021-08-23 datemonth = "Dec" dateyear = "2020" -dateday = 23 +dateday = "23" draft = false # Is this a draft? true/false toc = true # Show table of contents? true/false diff --git a/content/en/blog/pengcheng-en.md b/content/en/blog/pengcheng-en.md index 3fa7b289..fd8d7cf6 100644 --- a/content/en/blog/pengcheng-en.md +++ b/content/en/blog/pengcheng-en.md @@ -7,7 +7,7 @@ date = 2021-06-01 lastmod = 2021-08-26 datemonth = "Aug" dateyear = "2021" -dateday = 26 +dateday = "26" draft = false # Is this a draft? true/false toc = true # Show table of contents? true/false diff --git a/content/en/blog/ruitian-en.md b/content/en/blog/ruitian-en.md index 16c55496..e89f6460 100644 --- a/content/en/blog/ruitian-en.md +++ b/content/en/blog/ruitian-en.md @@ -7,7 +7,7 @@ date = 2021-01-05 lastmod = 2021-08-23 datemonth = "Dec" dateyear = "2020" -dateday = 23 +dateday = "23" draft = false # Is this a draft? true/false toc = true # Show table of contents? true/false diff --git a/content/en/blog/ruitian2-en.md b/content/en/blog/ruitian2-en.md index e22d87b7..3ace22c5 100644 --- a/content/en/blog/ruitian2-en.md +++ b/content/en/blog/ruitian2-en.md @@ -7,7 +7,7 @@ date = 2021-06-15 lastmod = 2021-08-25 datemonth = "Aug" dateyear = "2021" -dateday = 25 +dateday = "25" draft = false # Is this a draft? true/false toc = true # Show table of contents? true/false diff --git a/content/en/blog/volcano-2025-security-audit.md b/content/en/blog/volcano-2025-security-audit.md index cb3a51b4..4ed9bfe6 100644 --- a/content/en/blog/volcano-2025-security-audit.md +++ b/content/en/blog/volcano-2025-security-audit.md @@ -7,7 +7,7 @@ date = 2025-05-30 lastmod = 2025-05-30 datemonth = "May" dateyear = "2025" -dateday = 30 +dateday = "30" draft = false # Is this a draft? true/false toc = true # Show table of contents? true/false diff --git a/content/en/blog/xiaohongshu-en.md b/content/en/blog/xiaohongshu-en.md index ea8f0d86..a7eb5186 100644 --- a/content/en/blog/xiaohongshu-en.md +++ b/content/en/blog/xiaohongshu-en.md @@ -7,7 +7,7 @@ date = 2021-05-27 lastmod = 2021-08-24 datemonth = "Aug" dateyear = "2021" -dateday = 24 +dateday = "24" draft = false # Is this a draft? true/false toc = true # Show table of contents? true/false diff --git a/content/zh/blog/1.4 release.md b/content/zh/blog/1.4 release.md index f40fcee2..61f8bf29 100644 --- a/content/zh/blog/1.4 release.md +++ b/content/zh/blog/1.4 release.md @@ -7,7 +7,7 @@ date = 2021-08-31 lastmod = 2021-09-13 datemonth = "Sep" dateyear = "2021" -dateday = 13 +dateday = "13" draft = false # Is this a draft? true/false toc = true # Show table of contents? true/false diff --git a/content/zh/blog/ING_case.md b/content/zh/blog/ING_case.md index 37c887f7..5e8aa521 100644 --- a/content/zh/blog/ING_case.md +++ b/content/zh/blog/ING_case.md @@ -7,7 +7,7 @@ date = 2022-12-28 lastmod = 2022-12-28 datemonth = "Dec" dateyear = "2022" -dateday = 28 +dateday = "28" draft = false # Is this a draft? true/false toc = true # Show table of contents? true/false diff --git a/content/zh/blog/Quick-Start-Volcano.md b/content/zh/blog/Quick-Start-Volcano.md index 186e1ebd..74b667fa 100644 --- a/content/zh/blog/Quick-Start-Volcano.md +++ b/content/zh/blog/Quick-Start-Volcano.md @@ -7,7 +7,7 @@ date = 2019-03-28 lastmod = 2020-09-07 datemonth = "Sep" dateyear = "2020" -dateday = 07 +dateday = "07" draft = false # Is this a draft? true/false toc = true # Show table of contents? true/false diff --git a/content/zh/blog/Volcano-1.10.0-release.md b/content/zh/blog/Volcano-1.10.0-release.md index a56c49aa..b073d76e 100644 --- a/content/zh/blog/Volcano-1.10.0-release.md +++ b/content/zh/blog/Volcano-1.10.0-release.md @@ -7,7 +7,7 @@ date = 2024-09-29 lastmod = 2024-09-29 datemonth = "Sep" dateyear = "2024" -dateday = 29 +dateday = "29" draft = false # Is this a draft? true/false toc = true # Show table of contents? true/false diff --git a/content/zh/blog/Volcano-1.11.0-release.md b/content/zh/blog/Volcano-1.11.0-release.md index fd040c75..6a33c3a6 100644 --- a/content/zh/blog/Volcano-1.11.0-release.md +++ b/content/zh/blog/Volcano-1.11.0-release.md @@ -7,7 +7,7 @@ date = 2025-02-07 lastmod = 2025-02-07 datemonth = "Feb" dateyear = "2025" -dateday = 07 +dateday = "07" draft = false # Is this a draft? true/false toc = true # Show table of contents? true/false diff --git a/content/zh/blog/Volcano-1.12.0-release.md b/content/zh/blog/Volcano-1.12.0-release.md index a64d5cc4..ee65837c 100644 --- a/content/zh/blog/Volcano-1.12.0-release.md +++ b/content/zh/blog/Volcano-1.12.0-release.md @@ -7,7 +7,7 @@ date = 2025-06-12 lastmod = 2025-06-12 datemonth = "June" dateyear = "2025" -dateday = 12 +dateday = "12" draft = false # Is this a draft? true/false toc = true # Show table of contents? true/false diff --git a/content/zh/blog/Volcano-1.13.0-release.md b/content/zh/blog/Volcano-1.13.0-release.md index a4f19906..12c2b74f 100644 --- a/content/zh/blog/Volcano-1.13.0-release.md +++ b/content/zh/blog/Volcano-1.13.0-release.md @@ -7,7 +7,7 @@ date = 2025-09-29 lastmod = 2025-09-29 datemonth = "Sep" dateyear = "2025" -dateday = 29 +dateday = "29" draft = false # Is this a draft? true/false toc = true # Show table of contents? true/false diff --git a/content/zh/blog/Volcano-1.7.0-release.md b/content/zh/blog/Volcano-1.7.0-release.md index c431ec81..c06df84f 100644 --- a/content/zh/blog/Volcano-1.7.0-release.md +++ b/content/zh/blog/Volcano-1.7.0-release.md @@ -7,7 +7,7 @@ date = 2023-01-12 lastmod = 2023-01-12 datemonth = "Jan" dateyear = "2023" -dateday = 12 +dateday = "12" draft = false # Is this a draft? true/false toc = true # Show table of contents? true/false diff --git a/content/zh/blog/Volcano-1.8.2-release.md b/content/zh/blog/Volcano-1.8.2-release.md index 477f5a8b..a472c093 100644 --- a/content/zh/blog/Volcano-1.8.2-release.md +++ b/content/zh/blog/Volcano-1.8.2-release.md @@ -7,7 +7,7 @@ date = 2024-01-31 lastmod = 2024-01-31 datemonth = "Jan" dateyear = "2024" -dateday = 31 +dateday = "31" draft = false # Is this a draft? true/false toc = true # Show table of contents? true/false diff --git a/content/zh/blog/Volcano-1.9.0-release.md b/content/zh/blog/Volcano-1.9.0-release.md index cbc2d11c..036c6aaa 100644 --- a/content/zh/blog/Volcano-1.9.0-release.md +++ b/content/zh/blog/Volcano-1.9.0-release.md @@ -7,7 +7,7 @@ date = 2024-05-21 lastmod = 2024-05-21 datemonth = "May" dateyear = "2024" -dateday = 21 +dateday = "21" draft = false # Is this a draft? true/false toc = true # Show table of contents? true/false diff --git a/content/zh/blog/Volcano-community-co-construction-program.md b/content/zh/blog/Volcano-community-co-construction-program.md index 61b9abe8..bb000407 100644 --- a/content/zh/blog/Volcano-community-co-construction-program.md +++ b/content/zh/blog/Volcano-community-co-construction-program.md @@ -7,7 +7,7 @@ date = 2023-08-11 lastmod = 2023-08-11 datemonth = "Aug" dateyear = "2023" -dateday = 11 +dateday = "11" draft = false # Is this a draft? true/false toc = true # Show table of contents? true/false diff --git a/content/zh/blog/aiqiyi.md b/content/zh/blog/aiqiyi.md index 7e7656ca..be4b8e82 100644 --- a/content/zh/blog/aiqiyi.md +++ b/content/zh/blog/aiqiyi.md @@ -7,7 +7,7 @@ date = 2020-09-30 lastmod = 2021-08-25 datemonth = "Aug" dateyear = "2021" -dateday = 25 +dateday = "25" draft = false # Is this a draft? true/false toc = true # Show table of contents? true/false diff --git a/content/zh/blog/hpc.md b/content/zh/blog/hpc.md index e8f03cef..0dc6b0c3 100644 --- a/content/zh/blog/hpc.md +++ b/content/zh/blog/hpc.md @@ -7,7 +7,7 @@ date = 2020-10-27 lastmod = 2021-08-24 datemonth = "Aug" dateyear = "2021" -dateday = 24 +dateday = "24" draft = false # Is this a draft? true/false toc = true # Show table of contents? true/false diff --git a/content/zh/blog/iflytek_case_study.md b/content/zh/blog/iflytek_case_study.md index c74ba168..9feed554 100644 --- a/content/zh/blog/iflytek_case_study.md +++ b/content/zh/blog/iflytek_case_study.md @@ -7,7 +7,7 @@ date = 2025-06-13 lastmod = 2025-06-13 datemonth = "June" dateyear = "2025" -dateday = 13 +dateday = "13" draft = false # Is this a draft? true/false toc = true # Show table of contents? true/false diff --git a/content/zh/blog/introducing_kthena.md b/content/zh/blog/introducing_kthena.md index 51b42869..06267fe6 100644 --- a/content/zh/blog/introducing_kthena.md +++ b/content/zh/blog/introducing_kthena.md @@ -7,7 +7,7 @@ date = 2025-12-29 lastmod = 2025-12-29 datemonth = "Dec" dateyear = "2025" -dateday = 29 +dateday = "29" draft = false # Is this a draft? true/false toc = true # Show table of contents? true/false diff --git a/content/zh/blog/kube-batch-customers.md b/content/zh/blog/kube-batch-customers.md index 0d5014bd..9e06f7c2 100644 --- a/content/zh/blog/kube-batch-customers.md +++ b/content/zh/blog/kube-batch-customers.md @@ -7,7 +7,7 @@ date = 2019-01-28 lastmod = 2020-09-07 datemonth = "Sep" dateyear = "2020" -dateday = 07 +dateday = "07" draft = false # Is this a draft? true/false toc = true # Show table of contents? true/false diff --git a/content/zh/blog/kube-batch-startup.md b/content/zh/blog/kube-batch-startup.md index 854de5c0..99a3b2f8 100644 --- a/content/zh/blog/kube-batch-startup.md +++ b/content/zh/blog/kube-batch-startup.md @@ -7,7 +7,7 @@ date = 2019-01-28 lastmod = 2020-09-07 datemonth = "Sep" dateyear = "2020" -dateday = 07 +dateday = "07" draft = false # Is this a draft? true/false toc = true # Show table of contents? true/false diff --git a/content/zh/blog/leinao-cloud-os.md b/content/zh/blog/leinao-cloud-os.md index c44ea7de..f3437e7d 100644 --- a/content/zh/blog/leinao-cloud-os.md +++ b/content/zh/blog/leinao-cloud-os.md @@ -7,7 +7,7 @@ date = 2020-12-24 lastmod = 2021-08-23 datemonth = "Dec" dateyear = "2020" -dateday = 23 +dateday = "23" draft = false # Is this a draft? true/false toc = true # Show table of contents? true/false diff --git a/content/zh/blog/paddlepaddle.md b/content/zh/blog/paddlepaddle.md index ce66461f..71a23de6 100644 --- a/content/zh/blog/paddlepaddle.md +++ b/content/zh/blog/paddlepaddle.md @@ -7,7 +7,7 @@ date = 2019-11-06 lastmod = 2021-08-23 datemonth = "Dec" dateyear = "2020" -dateday = 23 +dateday = "23" draft = false # Is this a draft? true/false toc = true # Show table of contents? true/false diff --git a/content/zh/blog/pengcheng.md b/content/zh/blog/pengcheng.md index 075cbfb0..1e13864e 100644 --- a/content/zh/blog/pengcheng.md +++ b/content/zh/blog/pengcheng.md @@ -7,7 +7,7 @@ date = 2021-06-01 lastmod = 2021-08-26 datemonth = "Aug" dateyear = "2021" -dateday = 26 +dateday = "26" draft = false # Is this a draft? true/false toc = true # Show table of contents? true/false diff --git a/content/zh/blog/ruitian.md b/content/zh/blog/ruitian.md index 409f697c..5d9b5354 100644 --- a/content/zh/blog/ruitian.md +++ b/content/zh/blog/ruitian.md @@ -7,7 +7,7 @@ date = 2021-01-05 lastmod = 2021-08-23 datemonth = "Dec" dateyear = "2020" -dateday = 23 +dateday = "23" draft = false # Is this a draft? true/false toc = true # Show table of contents? true/false diff --git a/content/zh/blog/ruitian2.md b/content/zh/blog/ruitian2.md index b42aa2ea..4873abb1 100644 --- a/content/zh/blog/ruitian2.md +++ b/content/zh/blog/ruitian2.md @@ -7,7 +7,7 @@ date = 2021-06-15 lastmod = 2021-08-25 datemonth = "Aug" dateyear = "2021" -dateday = 25 +dateday = "25" draft = false # Is this a draft? true/false toc = true # Show table of contents? true/false diff --git a/content/zh/blog/xiaohongshu.md b/content/zh/blog/xiaohongshu.md index cf079f9c..07029af2 100644 --- a/content/zh/blog/xiaohongshu.md +++ b/content/zh/blog/xiaohongshu.md @@ -7,7 +7,7 @@ date = 2021-05-27 lastmod = 2021-08-24 datemonth = "Dec" dateyear = "2020" -dateday = 24 +dateday = "24" draft = false # Is this a draft? true/false toc = true # Show table of contents? true/false diff --git a/layouts/partials/header.html b/layouts/partials/header.html index d7efbfc8..6eb58dbc 100644 --- a/layouts/partials/header.html +++ b/layouts/partials/header.html @@ -6,7 +6,7 @@ - {{ .Hugo.Generator }} + {{ $scr := .Scratch }} @@ -115,7 +115,6 @@ {{ end }} - {{ if not .Site.IsServer }} {{ if .Site.GoogleAnalytics }} " (printf $js.autotrack.url $js.autotrack.version) $js.autotrack.sri | safeHTML }} {{ end }} {{ end }} - {{ end }} {{ if or .Site.RSSLink .RSSLink }}