From dcf7bc97fecbe8a5bcd67316ecdfea443e5c6d77 Mon Sep 17 00:00:00 2001
From: Martin Lowe <martin.lowe@eclipse-foundation.org>
Date: Thu, 13 Feb 2025 13:08:36 -0500
Subject: [PATCH] Fix broken link nominees list on nominee page and to remove
 dr from names

---
 layouts/nominees/single.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/layouts/nominees/single.html b/layouts/nominees/single.html
index 35a0abb8..dabc940a 100644
--- a/layouts/nominees/single.html
+++ b/layouts/nominees/single.html
@@ -37,7 +37,7 @@
       <h2 class="underlined-heading">Candidates</h2>
       <ul>
         {{ range sort $nominees "name" "asc" }}
-        <li><a href="{{ printf " ../%s" .username }}">{{.name}}</a></li>
+        <li><a href="{{ printf "../%s" .username }}">{{ replace .name "Dr." "" }}</a></li>
         {{ end }}
       </ul>
     </div>
-- 
GitLab