<?php
/**
 * Visual reviews.
 *
 * @package Foliora
 */

$reviews = array(
	array( 'I bought the sleeve for my Kindle but now I want one for every book I own.', 'sleeve-feature.jpg' ),
	array( 'The embosser might be the best bookish gift I\'ve ever received.', 'embosser-hero.jpg' ),
	array( 'The whole thing makes my evening reading routine feel so much nicer.', 'ritual-nook.jpg' ),
);
?>
<section class="section reviews" id="reviews" aria-labelledby="reviews-title">
	<div class="wrap">
		<header class="section-head" data-reveal>
			<h2 id="reviews-title">Notes from fellow readers</h2>
		</header>
		<ul class="reviews__grid">
			<?php foreach ( $reviews as $review ) : ?>
				<li class="review" data-reveal>
					<img src="<?php echo esc_url( foliora_image_uri( $review[1] ) ); ?>" alt="" width="900" height="700">
					<blockquote>
						<p class="stars" aria-hidden="true">★★★★★</p>
						<p>“<?php echo esc_html( $review[0] ); ?>”</p>
					</blockquote>
				</li>
			<?php endforeach; ?>
		</ul>
	</div>
</section>
