[READ-ONLY] Mirror of https://github.com/jmrplens/jmrplens.github.io. José M. Requena Plens — open-source projects & documentation hub
0

Configure Feed

Select the types of activity you want to include in your feed.

feat(geo): add Google Search Console verification alongside Bing

Same host-root verification pattern as bingVerify — covers the hub and
all project sub-path docs (e.g. jmrplens.github.io/cs-routeros-bouncer/).

Claude-Session: https://claude.ai/code/session_01Jcg86btaDWS2iBTkPG3HJb

José M. Requena Plens (Jul 2, 2026, 3:42 AM +0200) 7d95e9eb b1b106f8

+5
+2
src/data/site.ts
··· 59 59 }, 60 60 // Bing Webmaster Tools verification for the host root (covers sub-path docs). 61 61 bingVerify: "7574EB3B44624C239F14920DBC34EE25", 62 + // Google Search Console verification for the host root (covers sub-path docs). 63 + googleVerify: "4Hx_PJ1seU_BgKfWpo_FA7_Hkh7GeYVNrvnvzqCjF0Q", 62 64 } as const; 63 65 64 66 export interface Project {
+3
src/layouts/Base.astro
··· 133 133 <!-- Bing Webmaster Tools verification for the host root. --> 134 134 <meta name="msvalidate.01" content={site.bingVerify} /> 135 135 136 + <!-- Google Search Console verification for the host root. --> 137 + <meta name="google-site-verification" content={site.googleVerify} /> 138 + 136 139 <!-- Preload the LCP display font (H1) only. --> 137 140 <link rel="preload" href={displayFont} as="font" type="font/woff2" crossorigin /> 138 141