mirror of
https://github.com/kubesphere/website.git
synced 2025-12-26 00:12:48 +00:00
change shapshot image
This commit is contained in:
parent
cb897b5994
commit
e3673b6ccb
|
|
@ -9,11 +9,6 @@ baseURL = "https://hugo-first.netlify.app"
|
|||
|
||||
[params]
|
||||
logo = "images/logo.svg"
|
||||
snapshot = "/images/home/53.png"
|
||||
|
||||
title = "KubeSphere | The Kubernetes platform tailored for hybrid multicloud"
|
||||
description = "KubeSphere is a distributed operating system managing cloud native applications with Kubernetes as its kernel, and provides plug-and-play architecture for the seamless integration of third-party applications to boost its ecosystem."
|
||||
keywords = "KubeSphere, Kubernetes, container platform, DevOps, hybrid cloud, cloud native"
|
||||
|
||||
mailchimpSubscribeUrl = "https://kubesphere.us10.list-manage.com/subscribe/post?u=c85ea2b944b08b951f607bdd4&id=83f673a2d9"
|
||||
|
||||
|
|
@ -34,6 +29,12 @@ weight = 1
|
|||
languageCode = "en-US"
|
||||
languageName = "English"
|
||||
|
||||
[languages.en.params]
|
||||
title = "KubeSphere | The Kubernetes platform tailored for hybrid multicloud"
|
||||
description = "KubeSphere is a distributed operating system managing cloud native applications with Kubernetes as its kernel, and provides plug-and-play architecture for the seamless integration of third-party applications to boost its ecosystem."
|
||||
keywords = "KubeSphere, Kubernetes, container platform, DevOps, hybrid cloud, cloud native"
|
||||
snapshot = "/images/common/snapshot-en.png"
|
||||
|
||||
[[languages.en.menu.main]]
|
||||
weight = 2
|
||||
name = "Scenarios"
|
||||
|
|
@ -131,6 +132,12 @@ contentDir = "content/zh"
|
|||
languageCode = "zh-CN"
|
||||
languageName = "简体中文"
|
||||
|
||||
[languages.zh.params]
|
||||
title = "KubeSphere | 面向云原生应用的容器混合云"
|
||||
description = "KubeSphere 是在 Kubernetes 之上构建的以应用为中心的多租户容器平台,提供全栈的 IT 自动化运维的能力,简化企业的 DevOps 工作流。KubeSphere 提供了运维友好的向导式操作界面,帮助企业快速构建一个强大和功能丰富的容器云平台。"
|
||||
keywords = "KubeSphere, Kubernetes, 容器平台, DevOps, 混合云"
|
||||
snapshot = "/images/common/snapshot-zh.png"
|
||||
|
||||
[[languages.zh.menu.main]]
|
||||
weight = 2
|
||||
name = "应用场景"
|
||||
|
|
|
|||
|
|
@ -1,3 +0,0 @@
|
|||
title: "KubeSphere | The Kubernetes platform tailored for hybrid multicloud"
|
||||
description: "KubeSphere is a distributed operating system managing cloud native applications with Kubernetes as its kernel, and provides plug-and-play architecture for the seamless integration of third-party applications to boost its ecosystem."
|
||||
keywords: "KubeSphere, Kubernetes, container platform, DevOps, hybrid cloud, cloud native"
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
title: "KubeSphere | 面向云原生应用的容器混合云"
|
||||
description: "KubeSphere 是在 Kubernetes 之上构建的以应用为中心的多租户容器平台,提供全栈的 IT 自动化运维的能力,简化企业的 DevOps 工作流。KubeSphere 提供了运维友好的向导式操作界面,帮助企业快速构建一个强大和功能丰富的容器云平台。"
|
||||
keywords: "KubeSphere, Kubernetes, 容器平台, DevOps, 混合云"
|
||||
|
|
@ -1,15 +1,14 @@
|
|||
<head>
|
||||
{{ $data := index .Site.Data .Site.Language.Lang }}
|
||||
<meta charset="utf-8">
|
||||
<title>{{ with .Params.Title }}{{ . }}{{ else }}{{ with $data.head.title }}{{ . }}{{ end }}{{ end }}</title>
|
||||
<title>{{ with .Params.Title }}{{ . }}{{ else }}{{ with .Site.Params.title }}{{ . }}{{ end }}{{ end }}</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
||||
<meta name="description" content="{{ with .Params.Description }}{{ . }}{{ else }}{{ with $data.head.description }}{{ . }}{{ end }}{{ end }}">
|
||||
<meta name="keywords" content="{{ with .Params.Keywords }}{{ range $i, $e := . }}{{ if $i }} {{ end }}{{ $e }}{{ end }}{{ else }}{{ with $data.head.keywords }}{{ . }}{{ end }}{{ end }}">
|
||||
<meta name="description" content="{{ with .Params.Description }}{{ . }}{{ else }}{{ with .Site.Params.description }}{{ . }}{{ end }}{{ end }}">
|
||||
<meta name="keywords" content="{{ with .Params.Keywords }}{{ range $i, $e := . }}{{ if $i }} {{ end }}{{ $e }}{{ end }}{{ else }}{{ with .Site.Params.keywords }}{{ . }}{{ end }}{{ end }}">
|
||||
|
||||
<meta property="og:type" content="article"/>
|
||||
<meta property="og:title" content="{{ with .Params.Title }}{{ . }}{{ else }}{{ with $data.head.title }}{{ . }}{{ end }}{{ end }}"/>
|
||||
<meta property="og:description" content="{{ with .Params.Description }}{{ . }}{{ else }}{{ with $data.head.description }}{{ . }}{{ end }}{{ end }}"/>
|
||||
<meta property="og:title" content="{{ with .Params.Title }}{{ . }}{{ else }}{{ with .Site.Params.title }}{{ . }}{{ end }}{{ end }}"/>
|
||||
<meta property="og:description" content="{{ with .Params.Description }}{{ . }}{{ else }}{{ with .Site.Params.description }}{{ . }}{{ end }}{{ end }}"/>
|
||||
<meta property="og:image" content="{{ with .Params.snapshot }}{{ . }}{{ else }}{{ with .Site.Params.snapshot }}{{ . | absURL }}{{ end }}{{ end }}"/>
|
||||
<meta property="og:url" content="{{ .Permalink }}"/>
|
||||
|
||||
|
|
|
|||
Binary file not shown.
|
After Width: | Height: | Size: 2.0 MiB |
Binary file not shown.
|
After Width: | Height: | Size: 2.0 MiB |
Loading…
Reference in New Issue