{# # Product Attributes Table (Bootstrap 5 Override) # # Renders product attributes as a Bootstrap striped table. # # Expected context: # product_attributes - Array of attribute objects, each with: # .label - Attribute label # .value - Attribute value (HTML) # # WooCommerce PHP equivalent: single-product/product-attributes.php # # @package WcBootstrap # @since 0.1.0 #} {% if product_attributes is defined and product_attributes|length > 0 %} {% for attribute in product_attributes %} {% endfor %}
{{ attribute.label|esc_html }} {{ attribute.value|raw }}
{% endif %}