31 lines
605 B
PHP
31 lines
605 B
PHP
<?php
|
|
require_once APPS_PATH . '/Recipes/components.php';
|
|
|
|
the_header(
|
|
'Favorites',
|
|
'Here are your favorite recipes. Enjoy cooking!',
|
|
'favorites-page',
|
|
[
|
|
['keywords', 'favorites, recipes, cooking, food'],
|
|
]
|
|
);
|
|
?>
|
|
|
|
<div class="container">
|
|
<div class="favorites">
|
|
<div class="favorites-items">
|
|
<?php
|
|
for( $i = 0; $i < 5; $i++) {
|
|
foreach ($context['recipes'] as $recipe) {
|
|
the_product_item($recipe);
|
|
}
|
|
}
|
|
|
|
?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<?php
|
|
the_footer();
|
|
?>
|