From sebastiano at tronto.net Tue Jul 7 16:23:15 2026 From: sebastiano at tronto.net (Sebastiano Tronto) Date: Tue, 7 Jul 2026 18:23:15 +0200 Subject: [PATCH] Add title to site readme page Message-ID: <20260707162314.15076-2-sebastiano@tronto.net> Hello, I am playing around with cgit and I noticed that the title was missing in my about page (site readme). I am not sure this is the correct way to fix it, but it works on my machine. Signed-off-by: Sebastiano Tronto --- ui-repolist.c | 1 + 1 file changed, 1 insertion(+) diff --git a/ui-repolist.c b/ui-repolist.c index 1b224cf..4a70917 100644 --- a/ui-repolist.c +++ b/ui-repolist.c @@ -368,6 +368,7 @@ void cgit_print_repolist(void) void cgit_print_site_readme(void) { + ctx.page.title = ctx.cfg.root_title; cgit_print_layout_start(); if (!ctx.cfg.root_readme) goto done; -- 2.54.0 From aiden at aidenw.net Wed Jul 8 13:38:21 2026 From: aiden at aidenw.net (Aiden Woodruff) Date: Wed, 08 Jul 2026 09:38:21 -0400 Subject: [PATCH] Add title to site readme page In-Reply-To: <20260707162314.15076-2-sebastiano@tronto.net> References: <20260707162314.15076-2-sebastiano@tronto.net> Message-ID: <7a3b70590115fd40bbe9478e02046a1b@aidenw.net> On 2026-07-07 12:23, Sebastiano Tronto wrote: > Hello, > > I am playing around with cgit and I noticed that the title was missing > in my about page (site readme). I am not sure this is the correct way > to fix it, but it works on my machine. Good catch Sebastiano! I had never even noticed that. -- Aiden Woodruff