Current File : /home/resuelf/www/wp-content/plugins/aawp/templates/amp.php
<?php
/**
 * AMP template
 *
 * This template and its style will only be loaded when AMP endpoint was detected.
 *
 * @var AAWP_Template_Functions $this
 */

if ( ! defined( 'ABSPATH' ) ) {
    die( '-1' );
}

?>

<div class="aawp">

    <?php foreach ( $this->items as $i => $item ) : ?>
        <?php $this->setup_item($i, $item); ?>

        <div class="<?php echo $this->get_product_container_classes('aawp-product aawp-product--amp'); ?>" <?php $this->the_product_container(); ?>>

            <?php $this->the_product_ribbons(); ?>

            <div class="aawp-product__thumb">
                <a class="aawp-product__image-link"
                   href="<?php echo $this->get_product_image_link(); ?>" title="<?php echo $this->get_product_image_link_title(); ?>" rel="nofollow noopener sponsored" target="_blank">
                    <img class="aawp-product__image" src="<?php echo $this->get_product_image(); ?>" alt="<?php echo $this->get_product_image_alt(); ?>" <?php $this->the_product_image_title(); ?> />
                </a>
                <?php if ( $this->get_product_rating() ) { ?>
                    <div class="aawp-product__rating">
                        <?php echo $this->get_product_star_rating( array( 'size' => 'small' ) ); ?>
                        <?php if ( $this->get_product_reviews() ) { ?>
                            <span class="aawp-product__reviews">(<?php echo $this->get_product_reviews( $label = false ); ?>)</span>
                        <?php } ?>
                    </div>
                <?php } ?>
            </div>

            <div class="aawp-product__content">
                <a class="aawp-product__title" href="<?php echo $this->get_product_url(); ?>" title="<?php echo $this->get_product_link_title(); ?>" rel="nofollow noopener sponsored" target="_blank">
                    <?php echo $this->get_product_title(); ?>
                </a>

                <div class="aawp-product__description">
                    <?php echo $this->get_product_description(); ?>
                </div>

                <div class="aawp-product__pricing">
                    <?php if ( $this->get_product_is_sale() && $this->sale_show_old_price() ) { ?>
                        <span class="aawp-product__price aawp-product__price--old"><?php echo $this->get_product_pricing('old'); ?></span>
                    <?php } ?>

                    <?php if ( $this->show_advertised_price() ) { ?>
                        <span class="aawp-product__price aawp-product__price--current"><?php echo $this->get_product_pricing(); ?></span>
                    <?php } ?>

                    <?php $this->the_product_check_prime_logo(); ?>
                </div>

                <div class="aawp-product__buttons">
                    <?php echo $this->get_button('detail'); ?>
                    <?php echo $this->get_button(); ?>
                </div>
            </div>

            <div class="aawp-product__footer">

                <?php if ( $this->get_inline_info() ) { ?>
                    <span class="aawp-product__info"><?php echo $this->get_inline_info_text(); ?></span>
                <?php } ?>
            </div>
        </div>

    <?php endforeach; ?>

</div>