From 488d5d2f48f0c4abea58f6993c4f689aeb047d2e Mon Sep 17 00:00:00 2001 From: Etienne Perot Date: Wed, 20 Nov 2024 06:47:23 -0800 Subject: [PATCH] gVisor website: Fix title on homepage. Before this change, it was " - gVisor". Now it is "The Container Security Platform - gVisor". (I changed it the homepage title separator from "|" to "-" to match the fact that this separator is used on all other pages.) Fixes #11172. PiperOrigin-RevId: 698374062 --- website/_includes/header.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/_includes/header.html b/website/_includes/header.html index bd18c44c6..d62b9b186 100644 --- a/website/_includes/header.html +++ b/website/_includes/header.html @@ -2,10 +2,10 @@ - {% if page.title %} + {% if page.title and page.title != "" %} {{ page.title }} - gVisor {% else %} - The Container Security Platform | gVisor + The Container Security Platform - gVisor {% endif %}