add partner request

This commit is contained in:
liuboaibc 2020-06-09 16:09:17 +08:00
parent e9861c98f3
commit f5ecbdc1dc
4 changed files with 91 additions and 4 deletions

View File

@ -51,6 +51,7 @@
height: 128px;
margin: 0 auto;
overflow: hidden;
text-align: left;
}
div {

View File

@ -27,19 +27,19 @@ section3:
partnerType:
- title: "App Providers"
content: "KubeSphere Application Store is a great place to showcase your application, KubeSphere bring your applications to tens of thousands of users, making them deploy your App to Kubernetes with one click."
link: ""
link: "request"
- title: "Consulting"
content: If agencies and consultancies want to help clients easily adopt Kubernetes and deliver applications using modern, open source technologies, KubeSphere is the best choice for your team.
link: ""
link: "request"
- title: "Cloud Providers"
content: For any cloud providers who want to tightly integrate KubeSphere as a catalog or application in their application market for Kubernetes-based solution, do not hesitate to use KubeSphere to extend your ecosystem.
link: ""
link: "request"
- title: "Go-To-Market"
content: KubeSphere is 100% open source and free, you are able to localize KubeSphere, translate it into local languages, build local communities and develop local markets. GTM partners from around the globe that are tightly aligned with KubeSphere.
link: ""
link: "request"
section4:
title: 'Featured Partners'

View File

@ -0,0 +1,30 @@
---
title: "partner request"
layout: "request"
css: "scss/partner.scss"
section1:
title: 'Join the Revolution,Partner with KubeSphere'
content: 'We look forward to your joining KubeSphere partner to improve the ecosystem of both, and grow your business. KubeSphere provide resources and rights for partners to help them increase their expertise, deliver open source technology, and resell product.'
topImage: 'images/partner/partner-top.jpg'
section2:
title: 'Together, build partnership for success all over the world'
content: 'KubeSphere partners play a critical role in KubeSphere go-to-market strategy. KubeSphere partners are located all over the world, we are looking forward to the global cooperation, your success is our success.'
name1: 'USA'
icon1: ''
name2: 'European'
icon2: 'images/partner/radore.jpg'
name3: 'China'
icon3: 'images/partner/qingcloud.svg'
mapImage: 'images/partner/map.svg'
bg1: 'images/common/hexagon.svg'
bg2: 'images/partner/background1.svg'
bg3: 'images/partner/background2.svg'
section3:
title: Become a Partner with KubeSphere
googleFormUrl: https://docs.google.com/forms/d/e/1FAIpQLSf2kT-J9xJma3ASsZF6n0jVaAldJU2gNL8wVz88SraNJyCE4Q/viewform?embedded=true
---

View File

@ -0,0 +1,56 @@
{{ define "main" }}
<section class="section-1">
{{ with .Params.section1 }}
<img class="top-cover-img" src="{{ .topImage | absURL }}" alt="">
<div class="title-div">
<h1 class="title-center-h1">{{ .title }}</h1>
<p class="common-p">{{ .content }}</p>
</div>
{{ end }}
</section>
<section class="section-2">
{{ with .Params.section2 }}
<div class="common-layout">
<div class="left-div">
<div class="common-content">{{ .title }}</div>
<p class="common-p">{{ .content }}</p>
<img class='img-1' src="{{ .bg2 | absURL }}" alt="">
<img class='img-2' src="{{ .bg3 | absURL }}" alt="">
</div>
<div class="right-div">
<img src="{{ .mapImage | absURL }}" alt="">
<div class='btn-div div-1'>
<p>{{ .name1 }}</p>
<div>
<img src="{{ .icon1 | absURL }}" alt="">
</div>
</div>
<div class='btn-div div-2'>
<p>{{ .name2 }}</p>
<div>
<img src="{{ .icon2 | absURL }}" alt="">
</div>
</div>
<div class='btn-div div-3'>
<p>{{ .name3 }}</p>
<div>
<img src="{{ .icon3 | absURL }}" alt="">
</div>
</div>
</div>
</div>
<img src="{{ .bg1 | absURL }}" alt="">
{{ end }}
</section>
<section>
{{ with .Params.section3 }}
<div class="common-layout">
<h2 style="margin: 40px 0;" class="title-black-h2">{{ .title }}</h2>
<iframe src="{{ .googleFormUrl }}" width="640" height="1491" frameborder="0" marginheight="0" marginwidth="0">正在加载…</iframe>
</div>
{{ end }}
</section>
{{ end }}