This is an automated email from the ASF dual-hosted git repository.
liujun pushed a commit to branch refactor/next
in repository https://gitbox.apache.org/repos/asf/dubbo-website.git
The following commit(s) were added to refs/heads/refactor/next by this push:
new ee648f7869 Fix site params configuration (#2073)
ee648f7869 is described below
commit ee648f7869f7220c5fe8e8804236e4da8e37384c
Author: Ken Liu <[email protected]>
AuthorDate: Sat Feb 4 11:12:59 2023 +0800
Fix site params configuration (#2073)
---
.github/workflows/build_and_deploy_next.yml | 2 +-
cn_config.toml | 25 +++++++-----
config.toml | 18 ++++-----
content/zh-cn/blog/news/apache-dubbo-2019-2020.md | 1 +
content/zh-cn/blog/news/apachecon-na-2018.md | 1 +
.../news/build-new-docker-image-in-dockerhub.md | 1 +
content/zh-cn/blog/news/dubbo-10years.md | 1 +
content/zh-cn/blog/news/dubbo-history-gochina.md | 1 +
content/zh-cn/blog/news/dubbo-meetup-beijing.md | 1 +
content/zh-cn/blog/news/dubbo-meetup-chengdu.md | 1 +
content/zh-cn/blog/news/dubbo-meetup-hangzhou.md | 1 +
content/zh-cn/blog/news/dubbo-meetup-shanghai.md | 1 +
content/zh-cn/blog/news/dubbo-meetup-shenzhen.md | 1 +
content/zh-cn/blog/news/gsoc-2018.md | 1 +
.../blog/news/how-to-involve-dubbo-community.md | 1 +
content/zh-cn/blog/news/meet-dubbo.md | 1 +
.../zh-cn/blog/news/prepare-an-apache-release.md | 1 +
content/zh-cn/blog/news/qcon-beijing-2018.md | 1 +
content/zh-cn/blog/news/release-roadmap.md | 1 +
content/zh-cn/blog/news/releases/2.7.14.md | 1 +
content/zh-cn/blog/news/releases/2.7.5.md | 1 +
content/zh-cn/blog/news/releases/3.0.1.md | 1 +
content/zh-cn/blog/news/releases/3.0.2.1.md | 1 +
content/zh-cn/blog/news/releases/3.0.2.md | 1 +
content/zh-cn/blog/news/releases/3.1.3.md | 1 +
content/zh-cn/blog/news/releases/3.1.4.md | 1 +
content/zh-cn/blog/news/releases/3.2.0-beta.2.md | 1 +
content/zh-cn/blog/news/releases/3.2.0-beta.3.md | 1 +
content/zh-cn/blog/news/releases/dubbo-go-1.4.md | 1 +
content/zh-cn/blog/proposals/service-discovery.md | 1 +
content/zh-cn/blog/rust/first-release.md | Bin 9472 -> 9487 bytes
content/zh-cn/blog/users/alibaba.md | 3 +-
content/zh-cn/blog/users/dianxiaomi.md | 1 +
content/zh-cn/blog/users/eleme.md | 1 +
content/zh-cn/blog/users/guazi.md | 1 +
content/zh-cn/blog/users/icbc.md | 1 +
content/zh-cn/blog/users/pingan.md | 1 +
content/zh-cn/blog/users/xiaomi.md | 1 +
content/zh-cn/blog/users/zhonglunwangluo.md | 1 +
content/zh-cn/contact/books/_index.md | 11 +++++
content/zh-cn/contact/committer/_index.md | 2 +-
content/zh-cn/contact/contributor/_index.md | 2 +-
layouts/blog/baseof.html | 7 +---
layouts/blog/list.html | 43 ++++++++++++++++++++
layouts/docs/baseof.html | 1 -
layouts/partials/page-meta-links.html | 45 ---------------------
46 files changed, 116 insertions(+), 77 deletions(-)
diff --git a/.github/workflows/build_and_deploy_next.yml
b/.github/workflows/build_and_deploy_next.yml
index e6c7460e6d..d0849c4b17 100644
--- a/.github/workflows/build_and_deploy_next.yml
+++ b/.github/workflows/build_and_deploy_next.yml
@@ -43,4 +43,4 @@ jobs:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_branch: next-asf-site
publish_dir: ./public
- keep_files: true
+ keep_files: false
diff --git a/cn_config.toml b/cn_config.toml
index f2b44ef034..5305ce54ae 100644
--- a/cn_config.toml
+++ b/cn_config.toml
@@ -83,6 +83,17 @@ guessSyntax = "true"
[params]
copyright = "The Apache Software Foundation. Apache and the Apache feather
logo are trademarks of The Apache Software Foundation."
+# Repository configuration (URLs for in-page links to opening issues and
suggesting changes)
+github_repo = "https://github.com/apache/dubbo-website"
+# An optional link to a related project repo. For example, the sibling
repository where your product code lives.
+github_project_repo = "https://github.com/apache/dubbo"
+
+# Specify a value here if your content directory is not in your repo's root
directory
+# github_subdir = ""
+
+# Enable syntax highlighting and copy buttons on code blocks with Prism
+#prism_syntax_highlighting = false
+
#gcs_engine_id = "011737558837375720776:fsdu1nryfng"
algolia_docsearch = true
@@ -124,17 +135,6 @@ offlineSearch = false
# en.docs.url =
"https://chickenlj.github.io/incubator-dubbo-website/en/admin/"
# cn.docs.url =
"https://chickenlj.github.io/incubator-dubbo-website/cn/admin/"
-# Repository configuration (URLs for in-page links to opening issues and
suggesting changes)
-github_repo = "https://github.com/apache/dubbo-website"
-# An optional link to a related project repo. For example, the sibling
repository where your product code lives.
-github_project_repo = "https://github.com/apache/dubbo"
-
-# Specify a value here if your content directory is not in your repo's root
directory
-# github_subdir = ""
-
-# Enable syntax highlighting and copy buttons on code blocks with Prism
-#prism_syntax_highlighting = false
-
# User interface configuration
[params.ui]
# Enable to show the side bar menu in its compact state.
@@ -204,3 +204,6 @@ changefreq = "monthly"
filename = "sitemap.xml"
priority = 0.5
+[taxonomies]
+tag = "tags"
+
diff --git a/config.toml b/config.toml
index 97d28e5095..68a661ba4a 100644
--- a/config.toml
+++ b/config.toml
@@ -82,6 +82,13 @@ guessSyntax = "true"
[params]
copyright = "The Apache Software Foundation. Apache and the Apache feather
logo are trademarks of The Apache Software Foundation."
+# Repository configuration (URLs for in-page links to opening issues and
suggesting changes)
+github_repo = "https://github.com/apache/dubbo-website"
+# An optional link to a related project repo. For example, the sibling
repository where your product code lives.
+github_project_repo = "https://github.com/apache/dubbo"
+
+# Specify a value here if your content directory is not in your repo's root
directory
+# github_subdir = ""
#gcs_engine_id = "011737558837375720776:fsdu1nryfng"
@@ -125,14 +132,6 @@ offlineSearch = false
# en.docs.url =
"https://chickenlj.github.io/incubator-dubbo-website/en/admin/"
# cn.docs.url =
"https://chickenlj.github.io/incubator-dubbo-website/cn/admin/"
-# Repository configuration (URLs for in-page links to opening issues and
suggesting changes)
-github_repo = "https://github.com/apache/dubbo-website"
-# An optional link to a related project repo. For example, the sibling
repository where your product code lives.
-github_project_repo = "https://github.com/apache/dubbo"
-
-# Specify a value here if your content directory is not in your repo's root
directory
-# github_subdir = ""
-
# Enable syntax highlighting and copy buttons on code blocks with Prism
#prism_syntax_highlighting = false
@@ -206,5 +205,4 @@ filename = "sitemap.xml"
priority = 0.5
[taxonomies]
-tag = "tags"
-category = "categories"
\ No newline at end of file
+tag = "tags"
\ No newline at end of file
diff --git a/content/zh-cn/blog/news/apache-dubbo-2019-2020.md
b/content/zh-cn/blog/news/apache-dubbo-2019-2020.md
index 630f5a2ef6..46b066dec8 100644
--- a/content/zh-cn/blog/news/apache-dubbo-2019-2020.md
+++ b/content/zh-cn/blog/news/apache-dubbo-2019-2020.md
@@ -2,6 +2,7 @@
title: "从 2019 到 2020,Apache Dubbo 年度回顾与总结"
linkTitle: "从 2019 到 2020,Apache Dubbo 年度回顾与总结"
date: 2020-05-11
+tags: ["News"]
description: >
通过这篇文章我们将:总结过去一年 Dubbo 社区取得的成绩
---
diff --git a/content/zh-cn/blog/news/apachecon-na-2018.md
b/content/zh-cn/blog/news/apachecon-na-2018.md
index 06ca833a5b..fd62ce2d14 100644
--- a/content/zh-cn/blog/news/apachecon-na-2018.md
+++ b/content/zh-cn/blog/news/apachecon-na-2018.md
@@ -2,6 +2,7 @@
title: "ApacheCon NA 大会议程公布"
linkTitle: "ApacheCon NA 大会议程公布"
date: 2018-05-02
+tags: ["News"]
description: >
本文将向你介绍在ApacheCon大会议程公布上相关Dubbo议题演讲。
---
diff --git a/content/zh-cn/blog/news/build-new-docker-image-in-dockerhub.md
b/content/zh-cn/blog/news/build-new-docker-image-in-dockerhub.md
index 2c333a0013..f52235411c 100644
--- a/content/zh-cn/blog/news/build-new-docker-image-in-dockerhub.md
+++ b/content/zh-cn/blog/news/build-new-docker-image-in-dockerhub.md
@@ -2,6 +2,7 @@
title: "在DockerHub发布Dubbo Admin镜像"
linkTitle: "在DockerHub发布Dubbo Admin镜像"
date: 2018-04-23
+tags: ["News"]
description: >
本文将介绍如何在Dockerhub上发布Dubbo Admin镜像。
---
diff --git a/content/zh-cn/blog/news/dubbo-10years.md
b/content/zh-cn/blog/news/dubbo-10years.md
index 7935a081e0..8776adde66 100644
--- a/content/zh-cn/blog/news/dubbo-10years.md
+++ b/content/zh-cn/blog/news/dubbo-10years.md
@@ -2,6 +2,7 @@
title: "都已经十岁的 Apache Dubbo,还能再乘风破浪吗?"
linkTitle: "都已经十岁的 Apache Dubbo,还能再乘风破浪吗?"
date: 2021-01-14
+tags: ["News"]
description: >
在云原生时代,Apache Dubbo 将如何延续当前光芒?
---
diff --git a/content/zh-cn/blog/news/dubbo-history-gochina.md
b/content/zh-cn/blog/news/dubbo-history-gochina.md
index 1dabe68c6a..72051dc7f1 100644
--- a/content/zh-cn/blog/news/dubbo-history-gochina.md
+++ b/content/zh-cn/blog/news/dubbo-history-gochina.md
@@ -2,6 +2,7 @@
title: "Dubbo Go 回顾与展望"
linkTitle: "Dubbo Go 回顾与展望"
date: 2021-01-11
+tags: ["News"]
description: 本文记录了发表在 gochina 上的 Dubbo Go 的回顾与展望
---
diff --git a/content/zh-cn/blog/news/dubbo-meetup-beijing.md
b/content/zh-cn/blog/news/dubbo-meetup-beijing.md
index 7b0bb67626..a393986f89 100644
--- a/content/zh-cn/blog/news/dubbo-meetup-beijing.md
+++ b/content/zh-cn/blog/news/dubbo-meetup-beijing.md
@@ -2,6 +2,7 @@
title: "首届Dubbo开发者沙龙在北京成功举办"
linkTitle: "首届Dubbo开发者沙龙在北京成功举办"
date: 2018-05-12
+tags: ["News"]
description: 首届Dubbo开发者沙龙在北京成功举办
---
diff --git a/content/zh-cn/blog/news/dubbo-meetup-chengdu.md
b/content/zh-cn/blog/news/dubbo-meetup-chengdu.md
index 34b4309f64..1afbfeb90a 100644
--- a/content/zh-cn/blog/news/dubbo-meetup-chengdu.md
+++ b/content/zh-cn/blog/news/dubbo-meetup-chengdu.md
@@ -2,6 +2,7 @@
title: "第四届Dubbo开发者沙龙于8月26日在成都举行"
linkTitle: "第四届Dubbo开发者沙龙于8月26日在成都举行"
date: 2018-08-26
+tags: ["News"]
description: 第四届Dubbo开发者沙龙于8月26日在成都举行。
---
diff --git a/content/zh-cn/blog/news/dubbo-meetup-hangzhou.md
b/content/zh-cn/blog/news/dubbo-meetup-hangzhou.md
index 2d17b24d3e..95de165352 100644
--- a/content/zh-cn/blog/news/dubbo-meetup-hangzhou.md
+++ b/content/zh-cn/blog/news/dubbo-meetup-hangzhou.md
@@ -2,6 +2,7 @@
title: "第五届Dubbo开发者沙龙在杭州成功举办"
linkTitle: "第五届Dubbo开发者沙龙在杭州成功举办"
date: 2018-12-10
+tags: ["News"]
description: 第五届Dubbo开发者沙龙在杭州成功举办。
---
diff --git a/content/zh-cn/blog/news/dubbo-meetup-shanghai.md
b/content/zh-cn/blog/news/dubbo-meetup-shanghai.md
index 0208f384a6..a4313c5552 100644
--- a/content/zh-cn/blog/news/dubbo-meetup-shanghai.md
+++ b/content/zh-cn/blog/news/dubbo-meetup-shanghai.md
@@ -2,6 +2,7 @@
title: "第二届Dubbo开发者沙龙在上海成功举办"
linkTitle: "第二届Dubbo开发者沙龙在上海成功举办"
date: 2018-06-23
+tags: ["News"]
description: 第二届Dubbo开发者沙龙在上海成功举办。
---
diff --git a/content/zh-cn/blog/news/dubbo-meetup-shenzhen.md
b/content/zh-cn/blog/news/dubbo-meetup-shenzhen.md
index 369c1a9af5..5241bdcea2 100644
--- a/content/zh-cn/blog/news/dubbo-meetup-shenzhen.md
+++ b/content/zh-cn/blog/news/dubbo-meetup-shenzhen.md
@@ -2,6 +2,7 @@
title: "第三届Dubbo开发者沙龙在深圳成功举办"
linkTitle: "第三届Dubbo开发者沙龙在深圳成功举办"
date: 2018-07-30
+tags: ["News"]
description: 第三届Dubbo开发者沙龙在深圳成功举办
---
diff --git a/content/zh-cn/blog/news/gsoc-2018.md
b/content/zh-cn/blog/news/gsoc-2018.md
index 47c53555bd..4b248f2688 100644
--- a/content/zh-cn/blog/news/gsoc-2018.md
+++ b/content/zh-cn/blog/news/gsoc-2018.md
@@ -2,6 +2,7 @@
title: "谷歌编程之夏会议上2018个项目被宣布"
linkTitle: "谷歌编程之夏会议上2018个项目被宣布"
date: 2018-04-25
+tags: ["News"]
description: >
谷歌编程之夏会议上2018个项目被宣布,Dubbo位列其中。
---
diff --git a/content/zh-cn/blog/news/how-to-involve-dubbo-community.md
b/content/zh-cn/blog/news/how-to-involve-dubbo-community.md
index 42a5692529..2117cbdcaa 100644
--- a/content/zh-cn/blog/news/how-to-involve-dubbo-community.md
+++ b/content/zh-cn/blog/news/how-to-involve-dubbo-community.md
@@ -2,6 +2,7 @@
title: "如何参与贡献Dubbo社区"
linkTitle: "如何参与贡献Dubbo社区"
date: 2018-03-11
+tags: ["News"]
description: >
本文介绍了如何以Apache Way的方式参与Dubbo社区并做贡献
---
diff --git a/content/zh-cn/blog/news/meet-dubbo.md
b/content/zh-cn/blog/news/meet-dubbo.md
index d9940a878f..7ddbcd1d1e 100644
--- a/content/zh-cn/blog/news/meet-dubbo.md
+++ b/content/zh-cn/blog/news/meet-dubbo.md
@@ -2,6 +2,7 @@
title: "遇见Dubbo"
linkTitle: "遇见Dubbo"
date: 2019-01-26
+tags: ["News"]
description: >
本文记录了一个小白成长为Dubbo committer的过程。
---
diff --git a/content/zh-cn/blog/news/prepare-an-apache-release.md
b/content/zh-cn/blog/news/prepare-an-apache-release.md
index 1e8f924c96..9031571359 100644
--- a/content/zh-cn/blog/news/prepare-an-apache-release.md
+++ b/content/zh-cn/blog/news/prepare-an-apache-release.md
@@ -2,6 +2,7 @@
title: "如何准备Apache Release"
linkTitle: "如何准备Apache Release"
date: 2018-09-02
+tags: ["News"]
description: >
本文介绍了Apache如何发布内容和流程
---
diff --git a/content/zh-cn/blog/news/qcon-beijing-2018.md
b/content/zh-cn/blog/news/qcon-beijing-2018.md
index d82e269f94..72bb4f9f08 100644
--- a/content/zh-cn/blog/news/qcon-beijing-2018.md
+++ b/content/zh-cn/blog/news/qcon-beijing-2018.md
@@ -2,6 +2,7 @@
title: "Dubbo路线图在QCon Beijing 2018上公布"
linkTitle: "Dubbo路线图在QCon Beijing 2018上公布"
date: 2018-04-22
+tags: ["News"]
description: >
本文将向你介绍在QCon Beijing 2018上公布Dubbo路线图。
---
diff --git a/content/zh-cn/blog/news/release-roadmap.md
b/content/zh-cn/blog/news/release-roadmap.md
index 31c3dcce72..81923ae78b 100644
--- a/content/zh-cn/blog/news/release-roadmap.md
+++ b/content/zh-cn/blog/news/release-roadmap.md
@@ -2,6 +2,7 @@
title: "聚焦稳定性,Dubbo Java 发版规划公布"
linkTitle: "Dubbo Java 发版规划"
date: 2022-10-22
+tags: ["News"]
weight: 10
description: >
聚焦稳定性,Dubbo 发版规划公布
diff --git a/content/zh-cn/blog/news/releases/2.7.14.md
b/content/zh-cn/blog/news/releases/2.7.14.md
index 86fa5bc5c9..963fa8f734 100644
--- a/content/zh-cn/blog/news/releases/2.7.14.md
+++ b/content/zh-cn/blog/news/releases/2.7.14.md
@@ -2,6 +2,7 @@
title: "Dubbo Java 2.7.14 发版公告"
linkTitle: "dubbo-java 2.7.14"
weight: 50
+tags: ["Release Notes"]
date: 2020-05-18
description: >
Apache Dubbo 2.7.14 发版公告
diff --git a/content/zh-cn/blog/news/releases/2.7.5.md
b/content/zh-cn/blog/news/releases/2.7.5.md
index 429edfd781..79a3605886 100644
--- a/content/zh-cn/blog/news/releases/2.7.5.md
+++ b/content/zh-cn/blog/news/releases/2.7.5.md
@@ -2,6 +2,7 @@
title: "Dubbo Java 2.7.5 功能解析"
linkTitle: "dubbo-java 2.7.5"
date: 2020-05-18
+tags: ["Release Notes"]
description: >
2.7.5 发布,及其功能解析
---
diff --git a/content/zh-cn/blog/news/releases/3.0.1.md
b/content/zh-cn/blog/news/releases/3.0.1.md
index 1b661e1e3f..c4d0ddb4e2 100644
--- a/content/zh-cn/blog/news/releases/3.0.1.md
+++ b/content/zh-cn/blog/news/releases/3.0.1.md
@@ -2,6 +2,7 @@
title: "Dubbo Java 3.0.1 发版公告"
linkTitle: "dubbo-ava 3.0.1"
date: 2021-07-02
+tags: ["Release Notes"]
description: >
Apache Dubbo 3.0.1 发版公告
---
diff --git a/content/zh-cn/blog/news/releases/3.0.2.1.md
b/content/zh-cn/blog/news/releases/3.0.2.1.md
index 6aac7771e9..401cc79547 100644
--- a/content/zh-cn/blog/news/releases/3.0.2.1.md
+++ b/content/zh-cn/blog/news/releases/3.0.2.1.md
@@ -2,6 +2,7 @@
title: "Dubbo Java 3.0.2.1 发版公告"
linkTitle: "dubbo-java 3.0.2.1"
date: 2021-08-23
+tags: ["Release Notes"]
description: >
Apache Dubbo 3.0.2.1 发版公告
---
diff --git a/content/zh-cn/blog/news/releases/3.0.2.md
b/content/zh-cn/blog/news/releases/3.0.2.md
index 3a9a13d604..7c74b883ba 100644
--- a/content/zh-cn/blog/news/releases/3.0.2.md
+++ b/content/zh-cn/blog/news/releases/3.0.2.md
@@ -3,6 +3,7 @@ title: "Dubbo Java 3.0.2 发版公告"
linkTitle: "dubbo-java 3.0.2"
weight: 10
date: 2021-07-18
+tags: ["Release Notes"]
description: >
Apache Dubbo 3.0.2 发版公告
---
diff --git a/content/zh-cn/blog/news/releases/3.1.3.md
b/content/zh-cn/blog/news/releases/3.1.3.md
index d15052debc..f2b8dd2b38 100644
--- a/content/zh-cn/blog/news/releases/3.1.3.md
+++ b/content/zh-cn/blog/news/releases/3.1.3.md
@@ -2,6 +2,7 @@
title: "Dubbo Java 3.1.3 正式发布"
linkTitle: "dubbo-java 3.1.3"
date: 2022-07-18
+tags: ["Release Notes"]
weight: 20
description: >
在 11 月 28 日,Dubbo 3.1.3 正式通过投票发布。本文将介绍本次发布的变化一览。
diff --git a/content/zh-cn/blog/news/releases/3.1.4.md
b/content/zh-cn/blog/news/releases/3.1.4.md
index 71b92c9d6a..a872ca234f 100644
--- a/content/zh-cn/blog/news/releases/3.1.4.md
+++ b/content/zh-cn/blog/news/releases/3.1.4.md
@@ -2,6 +2,7 @@
title: "Dubbo Java 3.1.4 正式发布"
linkTitle: "dubbo-java 3.1.4"
date: 2022-12-01
+tags: ["Release Notes"]
weight: 10
description: >
在 12 月 22 日,Dubbo 3.1.4 版本发布,本文将介绍发布的变化一览。
diff --git a/content/zh-cn/blog/news/releases/3.2.0-beta.2.md
b/content/zh-cn/blog/news/releases/3.2.0-beta.2.md
index f0977c74ff..901d044853 100644
--- a/content/zh-cn/blog/news/releases/3.2.0-beta.2.md
+++ b/content/zh-cn/blog/news/releases/3.2.0-beta.2.md
@@ -3,6 +3,7 @@ title: "Dubbo 3.2.0-beta.2 正式发布"
linkTitle: "dubbo-java 3.2.0-beta.2"
date: 2022-11-18
weight: 40
+tags: ["Release Notes"]
description: >
在 11 月 28 日,Dubbo 3.2.0-beta.2 正式通过投票发布。本文将介绍本次发布的变化一览。
---
diff --git a/content/zh-cn/blog/news/releases/3.2.0-beta.3.md
b/content/zh-cn/blog/news/releases/3.2.0-beta.3.md
index b16adeac62..7ac158b80a 100644
--- a/content/zh-cn/blog/news/releases/3.2.0-beta.3.md
+++ b/content/zh-cn/blog/news/releases/3.2.0-beta.3.md
@@ -2,6 +2,7 @@
title: "Dubbo Java 3.2.0-beta.3 正式发布"
linkTitle: "dubbo-java 3.2.0-beta.3"
date: 2022-12-18
+tags: ["Release Notes"]
weight: 30
description: >
在 12 月 22 日,3.2.0-beta.3 正式通过投票发布。本文将介绍发布的变化一览。
diff --git a/content/zh-cn/blog/news/releases/dubbo-go-1.4.md
b/content/zh-cn/blog/news/releases/dubbo-go-1.4.md
index bd2c169fb1..02dd9e50c8 100644
--- a/content/zh-cn/blog/news/releases/dubbo-go-1.4.md
+++ b/content/zh-cn/blog/news/releases/dubbo-go-1.4.md
@@ -2,6 +2,7 @@
title: "Dubbo Go 1.4.0"
linkTitle: "dubbo-go 1.4.0"
date: 2021-01-12
+tags: ["Release Notes"]
description: >
dubbo-go 1.4.0 版本发布,支持 K8s 注册中心、rest 协议
---
diff --git a/content/zh-cn/blog/proposals/service-discovery.md
b/content/zh-cn/blog/proposals/service-discovery.md
index d42164fc3a..8c254e4948 100644
--- a/content/zh-cn/blog/proposals/service-discovery.md
+++ b/content/zh-cn/blog/proposals/service-discovery.md
@@ -2,6 +2,7 @@
title: "Dubbo3 应用级服务发现设计"
linkTitle: "Dubbo3 应用级服务发现设计"
date: 2023-01-30
+tags: ["Proposals"]
author: Jun Liu
description: >
当前版本的Dubbo Admin包含了之前版本中的绝大部分功能,包括服务治理,服务查询等,同时支持了Dubbo2.7中服务治理的新特性
diff --git a/content/zh-cn/blog/rust/first-release.md
b/content/zh-cn/blog/rust/first-release.md
index 98ff96e770..04a7527ec6 100644
Binary files a/content/zh-cn/blog/rust/first-release.md and
b/content/zh-cn/blog/rust/first-release.md differ
diff --git a/content/zh-cn/blog/users/alibaba.md
b/content/zh-cn/blog/users/alibaba.md
index 286aaacf91..e1691d8ff4 100644
--- a/content/zh-cn/blog/users/alibaba.md
+++ b/content/zh-cn/blog/users/alibaba.md
@@ -1,8 +1,7 @@
---
title: "阿里巴巴升级 Dubbo3 全面取代 HSF2"
linkTitle: "阿里巴巴"
-tags: ["use-case"]
-categories: ["use-case"]
+tags: ["用户案例"]
date: 2023-01-16
weight: 1
---
diff --git a/content/zh-cn/blog/users/dianxiaomi.md
b/content/zh-cn/blog/users/dianxiaomi.md
index 109b127b29..d88fced777 100644
--- a/content/zh-cn/blog/users/dianxiaomi.md
+++ b/content/zh-cn/blog/users/dianxiaomi.md
@@ -1,6 +1,7 @@
---
title: "店小蜜升级 Triple 协议"
linkTitle: "达摩院云小蜜"
+tags: ["用户案例"]
date: 2023-01-15
weight: 4
---
diff --git a/content/zh-cn/blog/users/eleme.md
b/content/zh-cn/blog/users/eleme.md
index 1f84d07e18..2829d87df4 100644
--- a/content/zh-cn/blog/users/eleme.md
+++ b/content/zh-cn/blog/users/eleme.md
@@ -2,6 +2,7 @@
title: "饿了么全站成功升级 Dubbo3 "
linkTitle: "饿了么"
date: 2023-01-15
+tags: ["用户案例"]
weight: 3
---
### 升级目标
diff --git a/content/zh-cn/blog/users/guazi.md
b/content/zh-cn/blog/users/guazi.md
index d670b0ce5d..2eeac96b23 100644
--- a/content/zh-cn/blog/users/guazi.md
+++ b/content/zh-cn/blog/users/guazi.md
@@ -1,6 +1,7 @@
---
title: "瓜子二手车 Dubbo 实践"
linkTitle: "瓜子二手车"
+tags: ["用户案例"]
date: 2023-01-15
weight: 4
---
diff --git a/content/zh-cn/blog/users/icbc.md b/content/zh-cn/blog/users/icbc.md
index 32ef0537cd..49d1772530 100644
--- a/content/zh-cn/blog/users/icbc.md
+++ b/content/zh-cn/blog/users/icbc.md
@@ -2,6 +2,7 @@
date: 2023-01-15
title: "工商银行 Dubbo3 应用级服务发现实践"
linkTitle: "工商银行"
+tags: ["用户案例"]
weight: 2
---
diff --git a/content/zh-cn/blog/users/pingan.md
b/content/zh-cn/blog/users/pingan.md
index a428b0d6fe..5a636fb87a 100644
--- a/content/zh-cn/blog/users/pingan.md
+++ b/content/zh-cn/blog/users/pingan.md
@@ -2,6 +2,7 @@
date: 2023-01-15
title: "平安健康的 Dubbo3 迁移历程"
linkTitle: "平安健康"
+tags: ["用户案例"]
weight: 5
---
# 1 背景
diff --git a/content/zh-cn/blog/users/xiaomi.md
b/content/zh-cn/blog/users/xiaomi.md
index 9143373463..3353cf60ad 100644
--- a/content/zh-cn/blog/users/xiaomi.md
+++ b/content/zh-cn/blog/users/xiaomi.md
@@ -2,6 +2,7 @@
date: 2023-01-15
title: "小米与 Dubbo 社区的合作"
linkTitle: "小米"
+tags: ["用户案例"]
weight: 4
---
diff --git a/content/zh-cn/blog/users/zhonglunwangluo.md
b/content/zh-cn/blog/users/zhonglunwangluo.md
index c3e47feac6..0f6a633d5d 100644
--- a/content/zh-cn/blog/users/zhonglunwangluo.md
+++ b/content/zh-cn/blog/users/zhonglunwangluo.md
@@ -2,6 +2,7 @@
date: 2023-01-15
title: "中伦网络 Dubbo3 升级实践"
linkTitle: "中伦网络"
+tags: ["用户案例"]
weight: 4
---
diff --git a/content/zh-cn/contact/books/_index.md
b/content/zh-cn/contact/books/_index.md
new file mode 100755
index 0000000000..21aedfe7d8
--- /dev/null
+++ b/content/zh-cn/contact/books/_index.md
@@ -0,0 +1,11 @@
+
+---
+type: docs
+title: "书籍与资料"
+linkTitle: "书籍与资料"
+description: ""
+weight: 1
+---
+
+
+
diff --git a/content/zh-cn/contact/committer/_index.md
b/content/zh-cn/contact/committer/_index.md
index 6a24d04a23..d4d1dd20c0 100755
--- a/content/zh-cn/contact/committer/_index.md
+++ b/content/zh-cn/contact/committer/_index.md
@@ -4,7 +4,7 @@ type: docs
title: "Committer 指南"
linkTitle: "Committer 指南"
description: "Dubbo Committer 指南"
-weight: 2
+weight: 3
---
diff --git a/content/zh-cn/contact/contributor/_index.md
b/content/zh-cn/contact/contributor/_index.md
index 118a2d629e..228ec4bd98 100755
--- a/content/zh-cn/contact/contributor/_index.md
+++ b/content/zh-cn/contact/contributor/_index.md
@@ -4,7 +4,7 @@ type: docs
title: "Contributor 指南"
linkTitle: "Contributor 指南"
description: "Dubbo Contributor 指南"
-weight: 1
+weight: 2
---
diff --git a/layouts/blog/baseof.html b/layouts/blog/baseof.html
index ff90ecdd5a..f2d8a01190 100755
--- a/layouts/blog/baseof.html
+++ b/layouts/blog/baseof.html
@@ -37,7 +37,7 @@
{{ if (and (not .Params.hide_feedback)
(.Site.Params.ui.feedback.enable) (.Site.GoogleAnalytics)) }}
{{ partial "feedback.html" .Site.Params.ui.feedback }}
{{ end }}
- {{ partial "page-meta-lastmod.html" . }}
+<!-- {{ partial "page-meta-lastmod.html" . }}-->
{{ if (.Site.DisqusShortname) }}
<br />
{{ partial "disqus-comment.html" . }}
@@ -45,10 +45,7 @@
</main>
<div class="d-none d-xl-block col-xl-2 td-toc d-print-none">
{{ partial "toc.html" . }}
- {{ $context := . }}
- {{ range $taxo, $taxo_map := .Site.Taxonomies }}
- {{ partial "taxonomy_terms_article.html" (dict "context"
$context "taxo" $taxo ) }}
- {{ end }}
+ {{ partial "taxonomy_terms_clouds.html" . }}
</div>
</div>
</div>
diff --git a/layouts/blog/list.html b/layouts/blog/list.html
new file mode 100755
index 0000000000..daa98a8241
--- /dev/null
+++ b/layouts/blog/list.html
@@ -0,0 +1,43 @@
+{{ define "main" }}
+{{ if (and .Parent .Parent.IsHome) }}
+{{ $.Scratch.Set "blog-pages" (where .Site.RegularPages "Section" .Section) }}
+{{ else }}
+{{$.Scratch.Set "blog-pages" .Pages }}
+{{ end }}
+
+<div class="row">
+ <div class="col-12">
+ {{- if .Pages -}}
+ {{ $pag := .Paginate (( $.Scratch.Get "blog-pages").GroupByDate
"2006" )}}
+ {{ range $pag.PageGroups }}
+ <h2>{{ T "post_posts_in" }} {{ .Key }}</h2>
+ <ul class="list-unstyled mt-4">
+ {{ range .Pages }}
+ <li class="media mb-4">
+ <div class="media-body">
+ <h5 class="mt-0 mb-1"><a href="{{
.RelPermalink }}">{{ .Title }}</a></h5>
+ <p class="mb-2 mb-md-3"><small
class="text-muted">{{ .Date.Format ($.Param "time_format_blog") }} {{ T
"ui_in"}} {{ .CurrentSection.LinkTitle }}</small></p>
+ <header class="article-meta">
+ {{ if (and (not
.Params.hide_readingtime) (.Site.Params.ui.readingtime.enable)) }}
+ {{ partial "reading-time.html"
. }}
+ {{ end }}
+ </header>
+ {{ partial "featured-image.html" (dict
"p" . "w" 250 "h" 125 "class" "float-start me-3 pt-1 d-none d-md-block") }}
+ <p class="pt-0 mt-0">{{ .Plain |
safeHTML | truncate 250 }}</p>
+ <p class="pt-0"><a href="{{
.RelPermalink }}" aria-label="{{ T "ui_read_more"}} - {{ .LinkTitle }}">{{ T
"ui_read_more"}}</a></p>
+ </div>
+ </li>
+ {{ end }}
+ </ul>
+ {{ end }}
+ {{ end }}
+ </div>
+</div>
+<div class="row ps-2 pt-2">
+ <div class="col">
+ {{ if .Pages }}
+ {{ template "_internal/pagination.html" . }}
+ {{ end }}
+ </div>
+</div>
+{{ end }}
\ No newline at end of file
diff --git a/layouts/docs/baseof.html b/layouts/docs/baseof.html
index f2386ae5e1..46eeb06d3c 100755
--- a/layouts/docs/baseof.html
+++ b/layouts/docs/baseof.html
@@ -37,7 +37,6 @@
<!-- {{ if (and (not .Params.hide_feedback)
(.Site.Params.ui.feedback.enable) (.Site.GoogleAnalytics)) }}-->
<!-- {{ partial "feedback.html" .Site.Params.ui.feedback }}-->
<!-- {{ end }}-->
-<!-- {{ partial "page-meta-lastmod.html" . }}-->
{{ if (.Site.DisqusShortname) }}
<br />
{{ partial "disqus-comment.html" . }}
diff --git a/layouts/partials/page-meta-links.html
b/layouts/partials/page-meta-links.html
deleted file mode 100755
index 83571db525..0000000000
--- a/layouts/partials/page-meta-links.html
+++ /dev/null
@@ -1,45 +0,0 @@
-{{/* template adapted from Docsy theme */}}
-{{ if .Path }}
- {{ $pathFormatted := replace .Path "\\" "/" }}
- {{ $gh_repo := ($.Param "github_repo") }}
- {{ $gh_subdir := ($.Param "github_subdir") }}
- {{ $gh_project_repo := ($.Param "github_project_repo") }}
- {{ $gh_branch := (default "main" ($.Param "github_branch")) }}
- <div class="td-page-meta ml-2 pb-1 pt-2 mb-0">
- {{ if $gh_repo }}
- {{ $gh_repo_path := printf "%s/content/%s" $gh_branch $pathFormatted }}
- {{ if and ($gh_subdir) (.Site.Language.Lang) }}
- {{ $gh_repo_path = printf "%s/%s/content/%s/%s" $gh_branch $gh_subdir
($.Site.Language.Lang) $pathFormatted }}
- {{ else if .Site.Language.Lang }}
- {{ $gh_repo_path = printf "%s/content/%s/%s" $gh_branch
($.Site.Language.Lang) $pathFormatted }}
- {{ else if $gh_subdir }}
- {{ $gh_repo_path = printf "%s/%s/content/%s" $gh_branch $gh_subdir
$pathFormatted }}
- {{ end }}
- {{ $editURL := printf "%s/edit/%s" $gh_repo $gh_repo_path }}
- {{ $createURL := printf "%s/edit/%s" $gh_repo $gh_repo_path }}
- {{ $issuesURL := printf "%s/issues/new?title=%s" $gh_repo (htmlEscape
$.Title )}}
- {{ $newPageStub := resources.Get "stubs/new-page-template.md" }}
- {{ $newPageQS := querify "value" $newPageStub.Content "filename"
"change-me.md" | safeURL }}
- {{ $newPageURL := printf "%s/new/%s?%s" $gh_repo $gh_repo_path $newPageQS
}}
-
- {{ if not (.Param "auto_generated") }}
- <a href="{{ $editURL }}" target="_blank"><i class="fa fa-edit fa-fw"></i>
{{ T "post_edit_this" }}</a>
- {{- if .HasShortcode "thirdparty-content" -}}
- <a href="#third-party-content-disclaimer"
class="third-party-disclaimer-link"><i class="fa fa-icon-circle fa-fw"></i> {{
T "thirdparty_message_edit_disclaimer" | safeHTML }}</a>
- {{- end }}
-
- <a href="{{ $newPageURL }}" target="_blank"><i class="fa fa-edit
fa-fw"></i> {{ T "post_create_child_page" }}</a>
- {{ end }}
-
- <a href="{{ $issuesURL }}" target="_blank"><i class="fab fa-github
fa-fw"></i> {{ T "post_create_issue" }}</a>
- {{ if $gh_project_repo }}
- {{ $project_issueURL := printf "%s/issues/new" $gh_project_repo }}
- <a href="{{ $project_issueURL }}" target="_blank"><i class="fas fa-tasks
fa-fw"></i> {{ T "post_create_project_issue" }}</a>
- {{ end }}
-
- {{ end }}
- {{ with .CurrentSection.AlternativeOutputFormats.Get "print" }}
- <a id="print" href="{{ .Permalink | safeURL }}"><i class="fa fa-print
fa-fw"></i> {{ T "print_entire_section" }}</a>
- {{ end }}
- </div>
-{{ end }}