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
This commit is contained in:
Etienne Perot
2024-11-20 06:51:17 -08:00
committed by gVisor bot
parent a92fc7b8c9
commit 488d5d2f48
+2 -2
View File
@@ -2,10 +2,10 @@
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
{% if page.title %}
{% if page.title and page.title != "" %}
<title>{{ page.title }} - gVisor</title>
{% else %}
<title>The Container Security Platform | gVisor</title>
<title>The Container Security Platform - gVisor</title>
{% endif %}
<link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: site_root }}">