{# SEO Meta Tags Include #} {# #} {# Expected context variables: #} {# - page_title: str - Page title (defaults to "ttvdrops") #} {# - page_description: str - Page description (defaults to site description) #} {# - page_image: str - Image URL for og:image (optional) #} {# - page_image_width: int - Image width in pixels (optional) #} {# - page_image_height: int - Image height in pixels (optional) #} {# - page_url: str - Full URL for og:url and canonical (defaults to request.build_absolute_uri) #} {# - og_type: str - OpenGraph type (defaults to "website") #} {# - schema_data: str - JSON-LD schema data serialized as string (optional) #} {# - breadcrumb_schema: str - Breadcrumb JSON-LD schema (optional) #} {# - pagination_info: dict - {"rel": "prev|next|first|last", "url": "..."} (optional) #} {# - published_date: str - ISO 8601 published date (optional) #} {# - modified_date: str - ISO 8601 modified date (optional) #} {# - robots_directive: str - robots meta content (default: "index, follow") #} {# #} {% load static %} {# Description meta tag #} {# Robots meta tag (control indexing) #} {# Author and Copyright #} {# Open Graph tags for social sharing #} {% if page_image %} {% if page_image_width and page_image_height %} {% endif %} {% endif %} {# Twitter Card tags for rich previews #} {% if page_image %}{% endif %} {# Article dates for content pages #} {% if published_date %}{% endif %} {% if modified_date %}{% endif %} {# Canonical tag #} {# Pagination links (for crawler efficiency) #} {% if pagination_info %} {% for link in pagination_info %}{% endfor %} {% endif %} {# Schema.org JSON-LD structured data #} {% if schema_data %}{% endif %} {# Breadcrumb schema #} {% if breadcrumb_schema %}{% endif %}