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

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


The following commit(s) were added to refs/heads/main by this push:
     new 256ea5b3c Fix team page mobile layout, merge krickert, refresh footer
256ea5b3c is described below

commit 256ea5b3c716bb12142b0b54b9d669905ac2dac4
Author: Richard Zowalla <[email protected]>
AuthorDate: Tue May 5 21:23:16 2026 +0200

    Fix team page mobile layout, merge krickert, refresh footer
    
    - Bridge kristian apache_id to krickert GitHub login so the activity
      folds into a single Active card instead of duplicating in the Wall
      of Fame.
    - Make contributor cards shrink correctly inside flex/grid on narrow
      viewports (min-width: 0, overflow-wrap: anywhere) and collapse to a
      single column under 480px.
    - Bump footer copyright to 2026 and replace "Apache feather logo"
      with "Apache logo".
---
 src/main/jbake/assets/css/custom-style.css   | 10 ++++++++++
 src/main/jbake/templates/footer.ftl          |  4 ++--
 src/main/resources/team-overrides.properties |  3 +++
 3 files changed, 15 insertions(+), 2 deletions(-)

diff --git a/src/main/jbake/assets/css/custom-style.css 
b/src/main/jbake/assets/css/custom-style.css
index 80f9b6629..11085f8c9 100644
--- a/src/main/jbake/assets/css/custom-style.css
+++ b/src/main/jbake/assets/css/custom-style.css
@@ -161,6 +161,13 @@ div.qlist.qanda > ol > li {
     margin: 0 0 1.5em 0;
 }
 
+@media (max-width: 480px) {
+    .contributor-grid {
+        grid-template-columns: 1fr;
+        gap: 8px;
+    }
+}
+
 .contributor-card {
     display: flex;
     align-items: center;
@@ -171,6 +178,7 @@ div.qlist.qanda > ol > li {
     background: #fff;
     text-decoration: none;
     color: inherit;
+    min-width: 0;
     transition: box-shadow 0.15s ease, transform 0.15s ease, border-color 
0.15s ease;
 }
 
@@ -198,10 +206,12 @@ div.qlist.qanda > ol > li {
 
 .contributor-name {
     flex: 1 1 auto;
+    min-width: 0;
     color: #333;
     font-size: 1em;
     font-weight: 500;
     word-break: break-word;
+    overflow-wrap: anywhere;
 }
 
 .contributor-role {
diff --git a/src/main/jbake/templates/footer.ftl 
b/src/main/jbake/templates/footer.ftl
index 2ac4675f1..bdb9fce9c 100755
--- a/src/main/jbake/templates/footer.ftl
+++ b/src/main/jbake/templates/footer.ftl
@@ -18,9 +18,9 @@
 -->
     <footer class='footer'>
         <div class="container">
-            <p class="text-muted">Copyright &copy; 2025  The Apache Software 
Foundation, Licensed under the
+            <p class="text-muted">Copyright &copy; 2026  The Apache Software 
Foundation, Licensed under the
             <a href="https://www.apache.org/licenses/LICENSE-2.0";>Apache 
License, Version 2.0</a>  <br>
-            Apache OpenNLP, OpenNLP, Apache, the Apache feather logo, and the 
Apache OpenNLP project logo are
+            Apache OpenNLP, OpenNLP, Apache, the Apache logo, and the Apache 
OpenNLP project logo are
             trademarks of The Apache Software Foundation. -
             <a href="/privacy-policy.html">Privacy Policy</a></p>
         </div>
diff --git a/src/main/resources/team-overrides.properties 
b/src/main/resources/team-overrides.properties
index 2c5ac00f3..a2d455ff7 100644
--- a/src/main/resources/team-overrides.properties
+++ b/src/main/resources/team-overrides.properties
@@ -48,6 +48,9 @@ jzemerick.chair  = true
 koji.gh          = kojisekig
 koji.status      = emeritus
 
+kristian.gh      = krickert
+kristian.status  = active
+
 mattmann.gh      = chrismattmann
 mattmann.status  = emeritus
 

Reply via email to