17 lines
		
	
	
		
			410 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			410 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<img src="static/img/bandeau.jpg" alt="Cook">
 | 
						|
 | 
						|
 | 
						|
<main>
 | 
						|
    <?php View::show("common/category_list") ?>
 | 
						|
    <article>
 | 
						|
        <section>
 | 
						|
            <h1> Nos idées recettes: </h1>
 | 
						|
            <?php
 | 
						|
                foreach ($A_view["RECIPES"] as $O_recipe){
 | 
						|
                    View::show("common/recipe", array("RECIPE" => $O_recipe));
 | 
						|
                }
 | 
						|
            ?>
 | 
						|
        </section>
 | 
						|
    </article>
 | 
						|
</main>
 |