{#- Product JSON-LD Structured Data Component Generates schema.org Product structured data for SEO optimization. Only renders when: 1. page.structured_data is true 2. page.type == 'product' Uses page frontmatter: - title: Product name - description: Product description - price: Product price - currency: Currency code (default: USD) - sku: Stock keeping unit - in_stock: Boolean availability - images: List of image URLs Example frontmatter: --- title: Product Name type: product price: 99.99 currency: USD sku: "PROD-001" in_stock: true images: - /images/product.jpg structured_data: true --- Usage in base.html or product layout: {% include "partials/product-jsonld.html" %} -#} {%- if (page?.structured_data ?? none) and (page?.type ?? '') == 'product' %} {% end %}