You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@teaclave.apache.org by ms...@apache.org on 2020/10/16 03:08:11 UTC

[incubator-teaclave-website] branch master updated (cb9cb81 -> ac8253a)

This is an automated email from the ASF dual-hosted git repository.

mssun pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-teaclave-website.git.


    from cb9cb81  Fix typos
     new c48fd28  Update nav bar
     new e92b72d  Add the download page
     new 7a6a067  Add the October podling report
     new 8e0b3fc  Update artifiacts' links
     new 080019f  Add disclaimer to all pages
     new bfb7190  Fix footer width
     new ac8253a  Fix download link and verification instruction

The 7 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 site/.vuepress/config.js                           |  2 +
 site/.vuepress/theme/components/Home.vue           |  5 +-
 site/.vuepress/theme/components/Page.vue           | 25 ++++++++-
 site/.vuepress/theme/layouts/IndexPost.vue         | 28 +++++++++-
 site/.vuepress/theme/layouts/Post.vue              | 23 ++++++++
 site/.vuepress/theme/styles/palette.styl           |  2 +
 ...020-06-29-podling-teaclave-report-july-2020.md} |  0
 ...0-10-12-podling-teaclave-report-october-2020.md | 64 ++++++++++++++++++++++
 site/download.md                                   | 61 +++++++++++++++++++++
 9 files changed, 206 insertions(+), 4 deletions(-)
 create mode 100644 site/.vuepress/theme/styles/palette.styl
 rename site/blog/{2020-06-29-podling-teaclave-report-July-2020.md => 2020-06-29-podling-teaclave-report-july-2020.md} (100%)
 create mode 100644 site/blog/2020-10-12-podling-teaclave-report-october-2020.md
 create mode 100644 site/download.md


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@teaclave.apache.org
For additional commands, e-mail: commits-help@teaclave.apache.org


[incubator-teaclave-website] 02/07: Add the download page

Posted by ms...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

mssun pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-teaclave-website.git

commit e92b72d1cb3c8bdf181d3f0518f5b388684ca1ce
Author: Mingshen Sun <bo...@mssun.me>
AuthorDate: Mon Oct 12 14:26:26 2020 -0700

    Add the download page
---
 site/.vuepress/config.js                 |  1 +
 site/.vuepress/theme/styles/palette.styl |  1 +
 site/download.md                         | 59 ++++++++++++++++++++++++++++++++
 3 files changed, 61 insertions(+)

diff --git a/site/.vuepress/config.js b/site/.vuepress/config.js
index 6a4c6a2..1902dfe 100644
--- a/site/.vuepress/config.js
+++ b/site/.vuepress/config.js
@@ -11,6 +11,7 @@ module.exports = {
         nav: [
             { text: 'About', link: '/' },
             { text: 'Community', link: '/community/' },
+            { text: 'Download', link: '/download/' },
             { text: 'Contributors', link: '/contributors/' },
             { text: 'Documentation', link: '/docs/' },
             { text: 'Blog', link: '/blog/' },
diff --git a/site/.vuepress/theme/styles/palette.styl b/site/.vuepress/theme/styles/palette.styl
new file mode 100644
index 0000000..ebad763
--- /dev/null
+++ b/site/.vuepress/theme/styles/palette.styl
@@ -0,0 +1 @@
+$contentWidth = 800px
diff --git a/site/download.md b/site/download.md
new file mode 100644
index 0000000..d1e57ed
--- /dev/null
+++ b/site/download.md
@@ -0,0 +1,59 @@
+---
+permalink: /download
+sidebar: false
+---
+# Download
+
+These source archives are generated from tagged releases.
+
+| Version | Release Date | Source Code               | PGP  | SHA     |
+|---------|--------------|---------------------------|------|---------|
+| 0.1.0   | 2020-10-09   | [apache-teaclave-0.1.0-incubating.tar.gz](https://dist.apache.org/repos/dist/release/incubator/teaclave/0.1.0/apache-teaclave-0.1.0-incubating.tar.gz) | [.asc](https://dist.apache.org/repos/dist/release/incubator/teaclave/0.1.0/apache-teaclave-0.1.0-incubating.tar.gz.asc) | [.sha512](https://dist.apache.org/repos/dist/release/incubator/teaclave/0.1.0/apache-teaclave-0.1.0-incubating.tar.gz.sha512) |
+
+## Verify Releases
+
+::: tip NOTE
+It is essential that you verify the integrity of the downloaded file using the
+PGP signature (`.asc` file) or a hash (`.sha512` file). Please read
+[Verifying Apache Software Foundation Releases](https://www.apache.org/info/verification.html) for more information on why you should
+verify our releases.
+:::
+
+The PGP signature can be verified using PGP or GPG. First download the
+[KEYS](https://downloads.apache.org/incubator/teaclave/KEYS) as
+well as the .asc signature file for the relevant distribution. Make sure you get
+these files from the main distribution site, rather than from a mirror. Then
+verify the signatures using one of the following alternatives:
+
+```
+$ gpg --import KEYS
+$ gpg --verify downloaded_file.asc downloaded_file
+```
+
+```
+$ pgpk -a KEYS
+$ pgpv downloaded_file.asc
+```
+
+```
+$ pgp -ka KEYS
+$ pgp downloaded_file.asc
+```
+
+You can also verify the hash on the file.
+
+Hashes can be calculated using GPG:
+
+```
+$ gpg --print-md SHA512 downloaded_file
+```
+
+The output should be compared with the contents of the `.sha512` file.
+
+Windows 7 and later systems should all now have certUtil:
+
+```
+$ certUtil -hashfile pathToFileToCheck
+```
+
+Unix-like systems (and macOS) will have a utility called `shasum`.


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@teaclave.apache.org
For additional commands, e-mail: commits-help@teaclave.apache.org


[incubator-teaclave-website] 03/07: Add the October podling report

Posted by ms...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

mssun pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-teaclave-website.git

commit 7a6a067dbc4d67ba98ce368fbb9c5f387b8e429e
Author: Mingshen Sun <bo...@mssun.me>
AuthorDate: Mon Oct 12 16:02:26 2020 -0700

    Add the October podling report
---
 ...020-06-29-podling-teaclave-report-july-2020.md} |  0
 ...0-10-12-podling-teaclave-report-october-2020.md | 64 ++++++++++++++++++++++
 2 files changed, 64 insertions(+)

diff --git a/site/blog/2020-06-29-podling-teaclave-report-July-2020.md b/site/blog/2020-06-29-podling-teaclave-report-july-2020.md
similarity index 100%
rename from site/blog/2020-06-29-podling-teaclave-report-July-2020.md
rename to site/blog/2020-06-29-podling-teaclave-report-july-2020.md
diff --git a/site/blog/2020-10-12-podling-teaclave-report-october-2020.md b/site/blog/2020-10-12-podling-teaclave-report-october-2020.md
new file mode 100644
index 0000000..c086a17
--- /dev/null
+++ b/site/blog/2020-10-12-podling-teaclave-report-october-2020.md
@@ -0,0 +1,64 @@
+---
+title: Podling Teaclave Report - October 2020
+date: 2020-10-12
+author: The Teaclave PPMC
+---
+
+## Teaclave
+
+Teaclave is a universal secure computing platform, making computation on
+privacy-sensitive data safe and simple.
+
+Teaclave has been incubating since 2019-08-20.
+
+### Three most important unfinished issues to address before graduating:
+
+  1. Improve project structure and documentation
+  2. Grow the community (attracting more committers, contributors, users)
+  3. Publish Apache releases (resolving logistics on Apache release)
+
+### Are there any issues that the IPMC or ASF Board need to be aware of?
+
+None. 
+
+### How has the community developed since the last report?
+
+Since the last report, we received contributions from a new contributor. We also
+received many issue reports and questions regarding the usages, bugs, and
+roadmap of Teaclave. Also, we presented the Teaclave project in recent ApacheCon
+to the community and received some useful feedback.
+
+### How has the project developed since the last report?
+
+The main goal of development since the last report is to resolve logistics
+towards the first Apache release. This includes license checking, building
+system improvement, documentation and write-ups. On Oct 9th, the Teaclave
+community and incubator has passed 0.1.0 release voting.
+
+### How would you assess the podling's maturity?
+Please feel free to add your own commentary.
+
+  - [ ] Initial setup
+  - [X] Working towards first release
+  - [X] Community building
+  - [ ] Nearing graduation
+  - [ ] Other:
+
+### Date of last release:
+
+2020-10-09
+
+### When were the last committers or PPMC members elected?
+
+We haven't started new committers or PPMC members elections yet. Currently, our
+work focuses on the first Apache release. We'll switch to community building in
+the next quarter. Currently, we already have potential candidates for the new
+PPMC members election.
+
+### Have your mentors been helpful and responsive?
+
+Yes. They have been helpful and very responsive for the first public release. 
+
+### Is the PPMC managing the podling's brand / trademarks?
+We don't find any 3rd parties incorrectly using the podling's name and brand.
+The VP, Brand has approved the project name. (PODLINGNAMESEARCH-175)


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@teaclave.apache.org
For additional commands, e-mail: commits-help@teaclave.apache.org


[incubator-teaclave-website] 04/07: Update artifiacts' links

Posted by ms...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

mssun pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-teaclave-website.git

commit 8e0b3fc79831d16b103490c68397e327b03890e2
Author: Mingshen Sun <bo...@mssun.me>
AuthorDate: Mon Oct 12 16:47:41 2020 -0700

    Update artifiacts' links
---
 site/download.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/site/download.md b/site/download.md
index d1e57ed..de83872 100644
--- a/site/download.md
+++ b/site/download.md
@@ -8,7 +8,7 @@ These source archives are generated from tagged releases.
 
 | Version | Release Date | Source Code               | PGP  | SHA     |
 |---------|--------------|---------------------------|------|---------|
-| 0.1.0   | 2020-10-09   | [apache-teaclave-0.1.0-incubating.tar.gz](https://dist.apache.org/repos/dist/release/incubator/teaclave/0.1.0/apache-teaclave-0.1.0-incubating.tar.gz) | [.asc](https://dist.apache.org/repos/dist/release/incubator/teaclave/0.1.0/apache-teaclave-0.1.0-incubating.tar.gz.asc) | [.sha512](https://dist.apache.org/repos/dist/release/incubator/teaclave/0.1.0/apache-teaclave-0.1.0-incubating.tar.gz.sha512) |
+| 0.1.0   | 2020-10-09   | [apache-teaclave-0.1.0-incubating.tar.gz](https://downloads.apache.org/incubator/teaclave/0.1.0/apache-teaclave-0.1.0-incubating.tar.gz) | [.asc](https://downloads.apache.org/incubator/teaclave/0.1.0/apache-teaclave-0.1.0-incubating.tar.gz.asc) | [.sha512](https://downloads.apache.org/incubator/teaclave/0.1.0/apache-teaclave-0.1.0-incubating.tar.gz.sha512) |
 
 ## Verify Releases
 


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@teaclave.apache.org
For additional commands, e-mail: commits-help@teaclave.apache.org


[incubator-teaclave-website] 07/07: Fix download link and verification instruction

Posted by ms...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

mssun pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-teaclave-website.git

commit ac8253a618180e6fab24e469276557820484db98
Author: Mingshen Sun <bo...@mssun.me>
AuthorDate: Thu Oct 15 20:07:54 2020 -0700

    Fix download link and verification instruction
---
 site/.vuepress/theme/components/Page.vue |  2 ++
 site/download.md                         | 34 +++++++++++++++++---------------
 2 files changed, 20 insertions(+), 16 deletions(-)

diff --git a/site/.vuepress/theme/components/Page.vue b/site/.vuepress/theme/components/Page.vue
index 39a1e14..a25463a 100644
--- a/site/.vuepress/theme/components/Page.vue
+++ b/site/.vuepress/theme/components/Page.vue
@@ -46,6 +46,8 @@ export default {
     margin: 2.5rem auto 0 auto
     font-size 0.7rem
     padding 2.5rem 0 2.5rem 0
+    @media (max-width: $MQMobileNarrow)
+      padding 1.5rem
     border-top 1px solid $borderColor
     text-align left
     color lighten($textColor, 25%)
diff --git a/site/download.md b/site/download.md
index de83872..5ff17eb 100644
--- a/site/download.md
+++ b/site/download.md
@@ -8,52 +8,54 @@ These source archives are generated from tagged releases.
 
 | Version | Release Date | Source Code               | PGP  | SHA     |
 |---------|--------------|---------------------------|------|---------|
-| 0.1.0   | 2020-10-09   | [apache-teaclave-0.1.0-incubating.tar.gz](https://downloads.apache.org/incubator/teaclave/0.1.0/apache-teaclave-0.1.0-incubating.tar.gz) | [.asc](https://downloads.apache.org/incubator/teaclave/0.1.0/apache-teaclave-0.1.0-incubating.tar.gz.asc) | [.sha512](https://downloads.apache.org/incubator/teaclave/0.1.0/apache-teaclave-0.1.0-incubating.tar.gz.sha512) |
+| 0.1.0   | 2020-10-09   | [apache-teaclave-0.1.0-incubating.tar.gz](https://www.apache.org/dyn/closer.cgi/incubator/teaclave/0.1.0/apache-teaclave-0.1.0-incubating.tar.gz) | [.asc](https://www.apache.org/dist/incubator/teaclave/0.1.0/apache-teaclave-0.1.0-incubating.tar.gz.asc) | [.sha512](https://www.apache.org/dist/incubator/teaclave/0.1.0/apache-teaclave-0.1.0-incubating.tar.gz.sha512) |
 
-## Verify Releases
+## Verify the Integrity of the Files
 
 ::: tip NOTE
 It is essential that you verify the integrity of the downloaded file using the
-PGP signature (`.asc` file) or a hash (`.sha512` file). Please read
-[Verifying Apache Software Foundation Releases](https://www.apache.org/info/verification.html) for more information on why you should
-verify our releases.
+PGP signature (`.asc` file) or a hash (`.md5` or `.sha*` file). Please read
+[Verifying Apache Software Foundation Releases](https://www.apache.org/info/verification.html)
+for more information on why you should verify our releases.
 :::
 
 The PGP signature can be verified using PGP or GPG. First download the
-[KEYS](https://downloads.apache.org/incubator/teaclave/KEYS) as
-well as the .asc signature file for the relevant distribution. Make sure you get
+[KEYS](https://www.apache.org/dist/incubator/teaclave/KEYS) as
+well as the asc signature file for the relevant distribution. Make sure you get
 these files from the main distribution site, rather than from a mirror. Then
-verify the signatures using one of the following alternatives:
+verify the signatures using
 
 ```
 $ gpg --import KEYS
 $ gpg --verify downloaded_file.asc downloaded_file
 ```
-
+or
 ```
 $ pgpk -a KEYS
 $ pgpv downloaded_file.asc
 ```
-
+or
 ```
 $ pgp -ka KEYS
 $ pgp downloaded_file.asc
 ```
-
-You can also verify the hash on the file.
+Alternatively, you can verify the hash on the file.
 
 Hashes can be calculated using GPG:
 
 ```
-$ gpg --print-md SHA512 downloaded_file
+$ gpg --print-md SHA256 downloaded_file
 ```
 
-The output should be compared with the contents of the `.sha512` file.
+The output should be compared with the contents of the SHA256 file. Similarly
+for other hashes (SHA512, SHA1, MD5 etc) which may be provided.
 
-Windows 7 and later systems should all now have certUtil:
+Windows 7 and later systems should all now have `certUtil`:
 
 ```
 $ certUtil -hashfile pathToFileToCheck
 ```
 
-Unix-like systems (and macOS) will have a utility called `shasum`.
+HashAlgorithm choices: MD2 MD4 MD5 SHA1 SHA256 SHA384 SHA512
+
+Unix-like systems (and macOS) will have a utility called `md5`, `md5sum` or `shasum`


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@teaclave.apache.org
For additional commands, e-mail: commits-help@teaclave.apache.org


[incubator-teaclave-website] 01/07: Update nav bar

Posted by ms...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

mssun pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-teaclave-website.git

commit c48fd289500efb961e659b7b72194e7ef503d16c
Author: Mingshen Sun <bo...@mssun.me>
AuthorDate: Wed Jul 29 17:48:08 2020 -0700

    Update nav bar
---
 site/.vuepress/config.js | 1 +
 1 file changed, 1 insertion(+)

diff --git a/site/.vuepress/config.js b/site/.vuepress/config.js
index e0704b1..6a4c6a2 100644
--- a/site/.vuepress/config.js
+++ b/site/.vuepress/config.js
@@ -65,6 +65,7 @@ module.exports = {
                     '/teaclave/docs/access-control',
                     '/teaclave/docs/build-system',
                     '/teaclave/docs/service-internals',
+                    '/teaclave/docs/papers-talks',
                 ],
             },
             {


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@teaclave.apache.org
For additional commands, e-mail: commits-help@teaclave.apache.org


[incubator-teaclave-website] 05/07: Add disclaimer to all pages

Posted by ms...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

mssun pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-teaclave-website.git

commit 080019fd90039c139b1f0ba1d295ef122f523a03
Author: Mingshen Sun <bo...@mssun.me>
AuthorDate: Mon Oct 12 16:48:02 2020 -0700

    Add disclaimer to all pages
---
 site/.vuepress/theme/components/Home.vue   |  5 +++--
 site/.vuepress/theme/components/Page.vue   | 23 ++++++++++++++++++++++-
 site/.vuepress/theme/layouts/IndexPost.vue | 20 +++++++++++++++++++-
 site/.vuepress/theme/layouts/Post.vue      | 15 +++++++++++++++
 site/.vuepress/theme/styles/footer.styl    |  8 ++++++++
 site/.vuepress/theme/styles/palette.styl   |  1 +
 6 files changed, 68 insertions(+), 4 deletions(-)

diff --git a/site/.vuepress/theme/components/Home.vue b/site/.vuepress/theme/components/Home.vue
index 2b3ca22..7e3418f 100644
--- a/site/.vuepress/theme/components/Home.vue
+++ b/site/.vuepress/theme/components/Home.vue
@@ -148,9 +148,10 @@ export default {
       color lighten($textColor, 25%)
   .footer
     font-size 0.7rem
-    padding 2.5rem
+    padding 2.5rem 0 2.5rem 0
+    margin-top 2.5rem
     border-top 1px solid $borderColor
-    text-align center
+    text-align left
     color lighten($textColor, 25%)
 
 @media (max-width: $MQMobile)
diff --git a/site/.vuepress/theme/components/Page.vue b/site/.vuepress/theme/components/Page.vue
index 04ec7cb..39a1e14 100644
--- a/site/.vuepress/theme/components/Page.vue
+++ b/site/.vuepress/theme/components/Page.vue
@@ -8,6 +8,20 @@
     <PageNav v-bind="{ sidebarItems }" />
 
     <slot name="bottom" />
+    <div class="footer">
+      Apache Teaclave (incubating) 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.
+      Copyright &copy; 2020 The Apache Software Foundation.
+      Licensed under the Apache License, Version 2.0.
+      Apache Teaclave, Apache, the Apache feather, and the Apache Teaclave project logo are either
+      trademarks or registered trademarks of the Apache Software Foundation.
+    </div>
   </main>
 </template>
 
@@ -27,5 +41,12 @@ export default {
 .page
   padding-bottom 2rem
   display block
-
+  .footer
+    max-width $contentWidth
+    margin: 2.5rem auto 0 auto
+    font-size 0.7rem
+    padding 2.5rem 0 2.5rem 0
+    border-top 1px solid $borderColor
+    text-align left
+    color lighten($textColor, 25%)
 </style>
diff --git a/site/.vuepress/theme/layouts/IndexPost.vue b/site/.vuepress/theme/layouts/IndexPost.vue
index f841aad..beeeea7 100644
--- a/site/.vuepress/theme/layouts/IndexPost.vue
+++ b/site/.vuepress/theme/layouts/IndexPost.vue
@@ -42,6 +42,20 @@
       </article>
     </div>
     <slot name="bottom" />
+    <div class="footer">
+      Apache Teaclave (incubating) 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.
+      Copyright &copy; 2020 The Apache Software Foundation.
+      Licensed under the Apache License, Version 2.0.
+      Apache Teaclave, Apache, the Apache feather, and the Apache Teaclave project logo are either
+      trademarks or registered trademarks of the Apache Software Foundation.
+    </div>
   </main>
 
   </div>
@@ -164,4 +178,8 @@ export default {
     },
   }
 }
-</script>
\ No newline at end of file
+</script>
+
+<style lang="stylus">
+@require '../styles/footer.styl'
+</style>
\ No newline at end of file
diff --git a/site/.vuepress/theme/layouts/Post.vue b/site/.vuepress/theme/layouts/Post.vue
index 0d4a4a9..59bdb50 100644
--- a/site/.vuepress/theme/layouts/Post.vue
+++ b/site/.vuepress/theme/layouts/Post.vue
@@ -44,6 +44,20 @@
     </article>
     </div>
     <slot name="bottom" />
+    <div class="footer">
+      Apache Teaclave (incubating) 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.
+      Copyright &copy; 2020 The Apache Software Foundation.
+      Licensed under the Apache License, Version 2.0.
+      Apache Teaclave, Apache, the Apache feather, and the Apache Teaclave project logo are either
+      trademarks or registered trademarks of the Apache Software Foundation.
+    </div>
   </main>
 
   </div>
@@ -169,6 +183,7 @@ export default {
 </script>
 
 <style lang="stylus">
+@require '../styles/footer.styl'
 .publish-date-author {
   margin: -10px 0 40px 0
 }
diff --git a/site/.vuepress/theme/styles/footer.styl b/site/.vuepress/theme/styles/footer.styl
new file mode 100644
index 0000000..87073dc
--- /dev/null
+++ b/site/.vuepress/theme/styles/footer.styl
@@ -0,0 +1,8 @@
+.footer
+  max-width $contentWidth
+  margin: 2.5rem auto 0 auto
+  font-size 0.7rem
+  padding 2.5rem 0 2.5rem 0
+  border-top 1px solid $borderColor
+  text-align left
+  color lighten($textColor, 25%)
diff --git a/site/.vuepress/theme/styles/palette.styl b/site/.vuepress/theme/styles/palette.styl
index ebad763..5a686d2 100644
--- a/site/.vuepress/theme/styles/palette.styl
+++ b/site/.vuepress/theme/styles/palette.styl
@@ -1 +1,2 @@
 $contentWidth = 800px
+$homePageWidth = 960px
\ No newline at end of file


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@teaclave.apache.org
For additional commands, e-mail: commits-help@teaclave.apache.org


[incubator-teaclave-website] 06/07: Fix footer width

Posted by ms...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

mssun pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-teaclave-website.git

commit bfb7190f117b932d06d638a2cdae2605e5f74a15
Author: Mingshen Sun <bo...@mssun.me>
AuthorDate: Mon Oct 12 17:04:18 2020 -0700

    Fix footer width
---
 site/.vuepress/theme/layouts/IndexPost.vue | 10 +++++++++-
 site/.vuepress/theme/layouts/Post.vue      | 10 +++++++++-
 site/.vuepress/theme/styles/footer.styl    |  8 --------
 3 files changed, 18 insertions(+), 10 deletions(-)

diff --git a/site/.vuepress/theme/layouts/IndexPost.vue b/site/.vuepress/theme/layouts/IndexPost.vue
index beeeea7..7497251 100644
--- a/site/.vuepress/theme/layouts/IndexPost.vue
+++ b/site/.vuepress/theme/layouts/IndexPost.vue
@@ -181,5 +181,13 @@ export default {
 </script>
 
 <style lang="stylus">
-@require '../styles/footer.styl'
+.page
+  .footer
+    max-width $contentWidth
+    margin: 2.5rem auto 0 auto
+    font-size 0.7rem
+    padding 2.5rem 0 2.5rem 0
+    border-top 1px solid $borderColor
+    text-align left
+    color lighten($textColor, 25%)
 </style>
\ No newline at end of file
diff --git a/site/.vuepress/theme/layouts/Post.vue b/site/.vuepress/theme/layouts/Post.vue
index 59bdb50..540856b 100644
--- a/site/.vuepress/theme/layouts/Post.vue
+++ b/site/.vuepress/theme/layouts/Post.vue
@@ -183,8 +183,16 @@ export default {
 </script>
 
 <style lang="stylus">
-@require '../styles/footer.styl'
 .publish-date-author {
   margin: -10px 0 40px 0
 }
+.page
+  .footer
+    max-width $contentWidth
+    margin: 2.5rem auto 0 auto
+    font-size 0.7rem
+    padding 2.5rem 0 2.5rem 0
+    border-top 1px solid $borderColor
+    text-align left
+    color lighten($textColor, 25%)
 </style>
\ No newline at end of file
diff --git a/site/.vuepress/theme/styles/footer.styl b/site/.vuepress/theme/styles/footer.styl
deleted file mode 100644
index 87073dc..0000000
--- a/site/.vuepress/theme/styles/footer.styl
+++ /dev/null
@@ -1,8 +0,0 @@
-.footer
-  max-width $contentWidth
-  margin: 2.5rem auto 0 auto
-  font-size 0.7rem
-  padding 2.5rem 0 2.5rem 0
-  border-top 1px solid $borderColor
-  text-align left
-  color lighten($textColor, 25%)


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@teaclave.apache.org
For additional commands, e-mail: commits-help@teaclave.apache.org