Render google-site-verification meta on homepage

Matches core remarkbox base.j2 behavior (request.path == '/' and
namespace.google_site_verification set). Needed for Google Search
Console verification of foxhop.net when app.theme = chaostheory
replaces the default base template.
This commit is contained in:
russell@unturf.com 2026-04-21 19:46:04 -04:00
parent e1f7330592
commit 67cda350cc

View file

@ -6,6 +6,10 @@
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
{% if request.path == '/' and request.namespace.google_site_verification %}
<meta name="google-site-verification" content="{{ request.namespace.google_site_verification }}" />
{% endif %}
<link rel="stylesheet" href="/static/css/common.css">
<link rel="stylesheet" href="/static/theme/chaostheory/css/960.css">
<link rel="stylesheet" href="/static/theme/chaostheory/css/pygments-native.css">