<?php
/**
 * Add to cart button
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit;
} // Exit if accessed directly

/** @var \Never5\DownloadMonitor\Shop\Product\Product $product */
/** @var string $atc_url */
?>
<p><a class="aligncenter download-button" href="<?php echo esc_url ( $atc_url ); ?>" rel="nofollow">
		<?php printf( esc_html__( 'Purchase &ldquo;%s&rdquo;', 'download-monitor' ), esc_html( $product->get_title() ) ); ?>
        <small><?php echo esc_html( dlm_format_money( $product->get_price() ) ); ?>
            - <?php $product->the_excerpt(); ?></small>
    </a></p>