{% extends "base.html" %} {# Extra
content: JSON-LD structured data and extra meta tags for SEO/GEO. #} {% block extrahead %} {{ super() }} {# Canonical SoftwareApplication schema, emitted on every page. #} {# Breadcrumb trail for the current page. #} {% if page and page.url %} {% endif %} {# FAQPage schema, only on the FAQ page. The questions are kept in sync with docs/faq.md. #} {% if page and page.url and 'faq' in page.url %} {% endif %} {# Open Graph + Twitter cards (text-only; social plugin not enabled). #} {% set _og_title = (page.title if page else config.site_name) | default(config.site_name, true) %} {% set _og_desc = (page.meta.description if (page and page.meta) else config.site_description) | default(config.site_description, true) %} {% set _og_url = config.site_url | default('https://legba.evilsocket.net/', true) ~ (page.url if page else '') %} {# Keywords meta tag — modest SEO signal but explicit for GEO crawlers. #} {% endblock %}