This is an automated email from the ASF dual-hosted git repository.
wutao pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-pegasus-website.git
The following commit(s) were added to refs/heads/master by this push:
new 6cdddd9 add apache disclaimer at the footer
6cdddd9 is described below
commit 6cdddd92f4f34d81212cfbef93cd780e61a37b66
Author: neverchanje <[email protected]>
AuthorDate: Wed Jul 22 18:22:05 2020 +0800
add apache disclaimer at the footer
---
.asf.yaml | 4 +---
_data/project.yml | 16 ++++++++++++++++
_includes/footer.html | 31 ++++++++++++++++---------------
_layouts/front.html | 34 +++++++++++++++++++++++++++++-----
_sass/_layout.scss | 4 ++++
_sass/_main.scss | 3 +--
assets/images/egg-logo.png | Bin 0 -> 17961 bytes
index.md | 3 ---
8 files changed, 67 insertions(+), 28 deletions(-)
diff --git a/.asf.yaml b/.asf.yaml
index 5ec6ed6..23a9d36 100644
--- a/.asf.yaml
+++ b/.asf.yaml
@@ -23,9 +23,7 @@ github:
projects: false
wiki: false
labels:
- - distributed-database
- - key-value-store
- - c-plus-plus
+ - pegasus
enabled_merge_buttons:
squash: true
merge: false
diff --git a/_data/project.yml b/_data/project.yml
new file mode 100644
index 0000000..6a95547
--- /dev/null
+++ b/_data/project.yml
@@ -0,0 +1,16 @@
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements. See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to you under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+podling: true
diff --git a/_includes/footer.html b/_includes/footer.html
index eec56f4..4902df8 100644
--- a/_includes/footer.html
+++ b/_includes/footer.html
@@ -1,21 +1,22 @@
<footer class="footer">
<div class="container">
- {% if site.footer_menu %}
- <div class="columns is-multiline">
- {% for item in site.data[site.footer_menu] %}
- <div class="column has-text-centered">
- <div>
- <a href="{{ item.link | prepend: site.baseurl }}"
class="link">{{ item.name }}</a>
- </div>
- </div>
- {% endfor %}
- </div>
- {% endif %}
<div class="content is-small has-text-centered">
- <p>Copyright (c) 2020, Xiaomi, Inc. All rights reserved.</p>
- <p>
- 我们是小米公司云平台部门的存储团队,团队的职责是开发和维护分布式存储系统,为整个小米公司及生态链企业提供分布式存储解决方案。
- </p>
+ <div style="margin-bottom: 20px;">
+ <a href="http://incubator.apache.org"><img src="{{
site.baseurl }}/assets/images/egg-logo.png"
+ alt="Apache
Incubator"/></a>
+ </div>
+ Copyright © 2020 <a href="http://www.apache.org">The Apache
Software Foundation</a>.
+ Licensed under the <a
href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version
+ 2.0</a>.
+ <br><br>
+ {% if site.data.project.podling %}
+ Apache Pegasus is an effort undergoing incubation at The Apache
Software Foundation (ASF),
+ sponsored by the Apache Incubator. Incubation is required of all
newly accepted projects
+ until a further review indicates that the infrastructure,
communications, and decision making process
+ have stabilized in a manner consistent with other successful ASF
projects. While incubation status is
+ not necessarily a reflection of the completeness or stability of
the code, it does indicate that the
+ project has yet to be fully endorsed by the ASF.
+ {% endif %}
</div>
</div>
</footer>
\ No newline at end of file
diff --git a/_layouts/front.html b/_layouts/front.html
index 7eb2c5f..ce6b8fd 100644
--- a/_layouts/front.html
+++ b/_layouts/front.html
@@ -4,15 +4,16 @@
<body>
{% include header.html %}
- <section class="hero is-fullheight-with-navbar is-bold is-primary" {% if
page.hero_image %}
+ <section class="hero is-large is-bold is-primary" {% if page.hero_image %}
style="background: url('{{ page.hero_image }}') no-repeat center
center; background-size: cover;" {% endif %}>
<div class="hero-body">
<div class="container has-text-centered">
- <p class="title is-1" style="padding-bottom: 2rem;">
- <img src="{{ site.baseurl
}}/assets/images/pegasus-logo.png">
+ <p class="project-title title is-1 has-text-weight-medium"
style="padding-bottom: 2rem; font-size: 70px;">
+ Apache Pegasus
+ </p>
+ <p class="subtitle is-4 has-text-white-bis
has-text-weight-light" style="padding-bottom: 1rem;">
+ A horizontally scalable, strongly consistent and
high-performance key-value store
</p>
- <p class="subtitle is-3 has-text-white-bis
has-text-weight-bold" style="padding-bottom: 1rem;">
- {{ page.subtitle }}</p>
<a style="padding-right: 0.5rem"
href="https://www.apache.org/licenses/LICENSE-2.0">
<img
alt="https://img.shields.io/github/license/xiaomi/pegasus.svg?style=flat-square&"
src="https://img.shields.io/github/license/xiaomi/pegasus.svg?style=flat-square&">
@@ -21,6 +22,7 @@
<img
alt="https://img.shields.io/github/stars/xiaomi/pegasus.svg?style=flat-square&"
src="https://img.shields.io/github/stars/xiaomi/pegasus.svg?style=flat-square&">
</a>
+ <br>
<a style="padding-right: 0.5rem"
href="https://github.com/XiaoMi/pegasus/issues?utf8=%E2%9C%93&q=label%3Arelease-note">
<img
alt="https://img.shields.io/github/release/xiaomi/pegasus.svg?style=flat-square&label=Pegasus"
src="https://img.shields.io/github/release/xiaomi/pegasus.svg?style=flat-square&label=Pegasus">
@@ -42,6 +44,28 @@
</div>
</div>
</div>
+ <footer class="footer">
+ <div class="container">
+ <div class="content is-small has-text-centered
has-text-grey-dark">
+ <div style="margin-bottom: 20px;">
+ <a href="http://incubator.apache.org"><img src="{{
site.baseurl }}/assets/images/egg-logo.png"
+ alt="Apache Incubator" /></a>
+ </div>
+ Copyright © 2020 <a href="http://www.apache.org">The
Apache Software Foundation</a>.
+ Licensed under the <a
href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version
+ 2.0</a>.
+ <br><br>
+ {% if site.data.project.podling %}
+ Apache Pegasus is an effort undergoing incubation at The
Apache Software Foundation (ASF),
+ sponsored by the Apache Incubator. Incubation is required
of all newly accepted projects
+ until a further review indicates that the infrastructure,
communications, and decision making process
+ have stabilized in a manner consistent with other
successful ASF projects. While incubation status is
+ not necessarily a reflection of the completeness or
stability of the code, it does indicate that the
+ project has yet to be fully endorsed by the ASF.
+ {% endif %}
+ </div>
+ </div>
+ </footer>
</section>
<script src="{{ site.baseurl }}/assets/js/app.js"
type="text/javascript"></script>
</body>
diff --git a/_sass/_layout.scss b/_sass/_layout.scss
index 09366c4..29742d2 100644
--- a/_sass/_layout.scss
+++ b/_sass/_layout.scss
@@ -59,3 +59,7 @@
padding-right: 1rem;
display: inline-block;
}
+
+.project-title {
+ font-family: 'Patua One', cursive;
+}
diff --git a/_sass/_main.scss b/_sass/_main.scss
index 90ab993..6b3207c 100644
--- a/_sass/_main.scss
+++ b/_sass/_main.scss
@@ -1,10 +1,9 @@
@charset "utf-8";
-@import url('https://fonts.googleapis.com/css?family=Montserrat');
+@import url(//fonts.googleapis.com/css?family=Patua+One);
$primary: #188eac !default;
$info: #419eda;
$black: hsl(0, 0%, 0%);
-
$tabs-link-active-color: $primary;
$tabs-link-active-border-bottom-color: $primary;
$navbar-height: 4.0rem;
diff --git a/assets/images/egg-logo.png b/assets/images/egg-logo.png
new file mode 100644
index 0000000..759252f
Binary files /dev/null and b/assets/images/egg-logo.png differ
diff --git a/index.md b/index.md
index 8636d89..ce8a558 100755
--- a/index.md
+++ b/index.md
@@ -1,7 +1,4 @@
---
-title: Pegasus
-subtitle: 易伸缩,强一致,高效的,开源分布式Key-Value存储
-# subtitle: A horizontally scalable, strongly consistent and high-performance
key-value store.
layout: front
toc: false
---
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]