{# # Price Component (Bootstrap 5) # # Reusable price display with sale/regular price handling. # # Expected context: # product - WC_Product object # # Usage: # {% include 'components/price.html.twig' with { product: product } %} # # @package WcBootstrap # @since 0.1.0 #} {% if product.get_price_html() %} {{ product.get_price_html()|raw }} {% endif %}