{# SEO Meta Tags Partial #}
{# Get page-specific description or fall back to site description #}
{% set page_description = page.meta.description if page.meta and page.meta.description else config.site_description %}
{# Get page title #}
{% set page_title = page.title if page.title else config.site_name %}
{% set full_title = page_title + " - " + config.site_name if page_title != config.site_name else config.site_name %}
{# Get page URL #}
{% set page_url = config.site_url + page.url if page.url else config.site_url %}
{# Open Graph / Facebook - og:image is handled by MkDocs Material social plugin #}
{% if config.site_author %}
{% endif %}
{# Twitter Card - twitter:image is handled by MkDocs Material social plugin #}
{% if config.extra.social %}
{% for social in config.extra.social %}
{% if "twitter" in social.link %}
{% endif %}
{% endfor %}
{% endif %}
{# Additional SEO meta tags #}
{% if page.meta and page.meta.keywords %}
{% endif %}
{# JSON-LD Structured Data #}