From 0f2c049c6083d9d4dbb5279708d5f392b158d4be Mon Sep 17 00:00:00 2001 From: "Teodoro B. Mendes" Date: Wed, 18 Mar 2026 12:29:42 -0300 Subject: [PATCH 1/4] fix: address PR comments --- static/css/v3/buttons.css | 2 +- static/css/v3/dialog.css | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/static/css/v3/buttons.css b/static/css/v3/buttons.css index c8af0d353..90ae26588 100644 --- a/static/css/v3/buttons.css +++ b/static/css/v3/buttons.css @@ -63,7 +63,7 @@ } .btn-secondary { - background: var(--color-surface-weak); + background: var(--color-secondary-light-blue); border-color: var(--color-stroke-strong); color: var(--color-text-primary); } diff --git a/static/css/v3/dialog.css b/static/css/v3/dialog.css index 26623967c..50283f8a8 100644 --- a/static/css/v3/dialog.css +++ b/static/css/v3/dialog.css @@ -139,6 +139,7 @@ .dialog-modal__description p { margin: 0; + padding: 0; font-family: var(--font-sans); font-size: var(--font-size-base); font-weight: var(--font-weight-regular); From 6d3da1f9bd2bd85f34c79da767bdb4c05793d21a Mon Sep 17 00:00:00 2001 From: "Teodoro B. Mendes" Date: Thu, 19 Mar 2026 11:58:48 -0300 Subject: [PATCH 2/4] fix: remove bg color from button --- static/css/v3/buttons.css | 1 - 1 file changed, 1 deletion(-) diff --git a/static/css/v3/buttons.css b/static/css/v3/buttons.css index 90ae26588..a23537dee 100644 --- a/static/css/v3/buttons.css +++ b/static/css/v3/buttons.css @@ -63,7 +63,6 @@ } .btn-secondary { - background: var(--color-secondary-light-blue); border-color: var(--color-stroke-strong); color: var(--color-text-primary); } From 9d711b98c80b0a9e26307850c2e16c4b71d4cd2e Mon Sep 17 00:00:00 2001 From: "Teodoro B. Mendes" Date: Thu, 19 Mar 2026 11:59:14 -0300 Subject: [PATCH 3/4] fix: add bg surface-weak color to secondary hero buttons --- static/css/v3/buttons.css | 1 + 1 file changed, 1 insertion(+) diff --git a/static/css/v3/buttons.css b/static/css/v3/buttons.css index a23537dee..e3529b639 100644 --- a/static/css/v3/buttons.css +++ b/static/css/v3/buttons.css @@ -147,6 +147,7 @@ } .btn.btn-hero.btn-secondary { + background: var(--color-surface-weak); border-color: var(--color-stroke-weak); } From 5ab1afc886c919f2b4bddcfccab6b0e3c3168349 Mon Sep 17 00:00:00 2001 From: Greg Kaleka Date: Thu, 19 Mar 2026 12:46:53 -0400 Subject: [PATCH 4/4] Display multiple testimonials on homepage in a carousel (#2201) --- ak/views.py | 8 ++++++-- templates/homepage.html | 42 +++++++++++++++++++++++++++++++++-------- testimonials/models.py | 1 - 3 files changed, 40 insertions(+), 11 deletions(-) diff --git a/ak/views.py b/ak/views.py index 308ba50e6..5a4541f36 100644 --- a/ak/views.py +++ b/ak/views.py @@ -28,9 +28,13 @@ def get_context_data(self, **kwargs): context = super().get_context_data(**kwargs) context["entries"] = Entry.objects.published().order_by("-publish_at")[:3] context["events"] = self.get_events() - context["testimonial"] = ( - Testimonial.objects.live().filter(pull_quote__gt="").last() + testimonials = ( + Testimonial.objects.live() + .filter(pull_quote__gt="") + .order_by("-first_published_at") ) + context["testimonials"] = testimonials + context["num_testimonials"] = testimonials.count() if context["events"]: context["num_months"] = len(context["events"]) else: diff --git a/templates/homepage.html b/templates/homepage.html index a8b04e771..94276e134 100644 --- a/templates/homepage.html +++ b/templates/homepage.html @@ -60,17 +60,42 @@

165+

- {% if testimonial %} + {% if testimonials %}
-
+
Testimonials
-
-
- {{ testimonial.pull_quote }} +
+ {% for t in testimonials %} +
+
+
+ {{ t.pull_quote }} +
+ +
+
+ {% endfor %}
- - - +
+ + +
@@ -310,6 +335,7 @@