This is an automated email from the ASF dual-hosted git repository. potiuk pushed a commit to branch get-rid-of-bad-wrapping-in-mailing-list-info in repository https://gitbox.apache.org/repos/asf/airflow-site.git
commit ca3bf3bd698cef3a6a66ac82f820f3bcdb6c7330 Author: Jarek Potiuk <[email protected]> AuthorDate: Sat Feb 25 09:11:07 2023 +0100 Fix wrapping of unsubscribe lists in the community page --- 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/[email protected]">archive</a>): <a class="list-link" href="mailto:[email protected]">[email protected]</a> <small>and <a class="list-link" href="mailto:[email protected]">[email protected]</a> to unsubscribe</small> + Users list (<a href="https://lists.apache.org/[email protected]">archive</a>): + <ul> + <li><a class="list-link" href="mailto:[email protected]">[email protected]</a></li> + <li><small><a class="list-link" href="mailto:[email protected]">[email protected]</a> to unsubscribe</small></li> + </ul> </li> <li> - Dev list (<a href="https://lists.apache.org/[email protected]">archive</a>): <a class="list-link" href="mailto:[email protected]">[email protected]</a> <small>and <a class="list-link" href="mailto:[email protected]">[email protected]</a> to unsubscribe</small> + Dev list (<a href="https://lists.apache.org/[email protected]">archive</a>): + <ul> + <li><a class="list-link" href="mailto:[email protected]">[email protected]</a></li> + <li><small><a class="list-link" href="mailto:[email protected]">[email protected]</a> to unsubscribe</small></li> + </ul> </li> </ul> </li>
