This is an automated email from the ASF dual-hosted git repository. potiuk pushed a commit to branch fix-summit-banner-missing-on-most-pages in repository https://gitbox.apache.org/repos/asf/airflow-site.git
commit 210456fd1f325b577761fe39a59d74fa43950787 Author: Jarek Potiuk <[email protected]> AuthorDate: Tue Jun 16 10:46:12 2026 -0400 Add Summit 2026 banner to the _partials navbar copy PR #1566 added the banner only to landing-pages/site/layouts/partials/navbar.html (legacy Hugo partial location). Most pages — home, blog, community, use-cases — render the navbar from layouts/_partials/navbar.html (Hugo's current convention, which takes precedence), so the banner never appeared on them. Mirror the same banner markup and the 40px nav offset into _partials/navbar.html so the banner shows site-wide. The shared header offset bump already lives in _shared.scss, so no further SCSS change is needed. Co-Authored-By: Claude Opus 4.8 (1M context) <[email protected]> --- landing-pages/site/layouts/_partials/navbar.html | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/landing-pages/site/layouts/_partials/navbar.html b/landing-pages/site/layouts/_partials/navbar.html index c66a42b5cc..82e9e72349 100644 --- a/landing-pages/site/layouts/_partials/navbar.html +++ b/landing-pages/site/layouts/_partials/navbar.html @@ -18,7 +18,10 @@ */}} {{ $cover := .HasShortcode "blocks/cover" }} -<nav class="js-navbar-scroll navbar" aria-label="Main navigation"> +<a href="https://airflowsummit.org" target="_blank" class="d-block fixed-top px-3 py-2 bg-success text-center text-bold text-white"> + Airflow Summit 2026 is coming August 31 - September 2 in Austin, TX. Register now to secure your spot! +</a> +<nav class="js-navbar-scroll navbar" aria-label="Main navigation" style="top: 40px;"> <div class="navbar__icon-container"> <a href="{{ .Site.Home.RelPermalink }}" aria-label="Apache Airflow home">
