You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by pi...@apache.org on 2023/02/25 12:57:44 UTC

[airflow-site] branch main updated: Fix wrapping of unsubscribe lists in the community page (#744)

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

pierrejeambrun pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow-site.git


The following commit(s) were added to refs/heads/main by this push:
     new 5bb987e681 Fix wrapping of unsubscribe lists in the community page (#744)
5bb987e681 is described below

commit 5bb987e6811a799f7053d5e13f5bd89d8185ebcb
Author: Jarek Potiuk <ja...@potiuk.com>
AuthorDate: Sat Feb 25 13:57:38 2023 +0100

    Fix wrapping of unsubscribe lists in the community page (#744)
    
    The list names were badly wrapping - suggesting that the unsubscribe
    address was "unsubscribe@airflow-apache-org" rather than
    "users-unsubscribe"
---
 landing-pages/site/content/en/community/_index.html | 12 ++++++++++--
 1 file changed, 10 insertions(+), 2 deletions(-)

diff --git a/landing-pages/site/content/en/community/_index.html b/landing-pages/site/content/en/community/_index.html
index db6e88a3e4..a7304e60b8 100644
--- a/landing-pages/site/content/en/community/_index.html
+++ b/landing-pages/site/content/en/community/_index.html
@@ -16,10 +16,18 @@ menu:
             </p>
             <ul class="ticks-blue mx-auto">
                 <li>
-                    Users list (<a href="https://lists.apache.org/list.html?users@airflow.apache.org">archive</a>): <a class="list-link" href="mailto:users-subscribe@airflow.apache.org">users-subscribe@airflow.apache.org</a> <small>and <a class="list-link" href="mailto:users-unsubscribe@airflow.apache.org">users-unsubscribe@airflow.apache.org</a> to unsubscribe</small>
+                    Users list (<a href="https://lists.apache.org/list.html?users@airflow.apache.org">archive</a>):
+                    <ul>
+                       <li><a class="list-link" href="mailto:users-subscribe@airflow.apache.org">users-subscribe@airflow.apache.org</a></li>
+                       <li><small><a class="list-link" href="mailto:users-unsubscribe@airflow.apache.org">users-unsubscribe@airflow.apache.org</a> to unsubscribe</small></li>
+                       </ul>
                 </li>
                 <li>
-                    Dev list (<a href="https://lists.apache.org/list.html?dev@airflow.apache.org">archive</a>): <a class="list-link" href="mailto:dev-subscribe@airflow.apache.org">dev-subscribe@airflow.apache.org</a> <small>and <a class="list-link" href="mailto:dev-unsubscribe@airflow.apache.org">dev-unsubscribe@airflow.apache.org</a> to unsubscribe</small>
+                    Dev list (<a href="https://lists.apache.org/list.html?dev@airflow.apache.org">archive</a>):
+                    <ul>
+                       <li><a class="list-link" href="mailto:dev-subscribe@airflow.apache.org">dev-subscribe@airflow.apache.org</a></li>
+                       <li><small><a class="list-link" href="mailto:dev-unsubscribe@airflow.apache.org">dev-unsubscribe@airflow.apache.org</a> to unsubscribe</small></li>
+                    </ul>
                 </li>
             </ul>
         </li>