Skip to content
Extraits de code Groupes Projets
Valider a4ec6501 rédigé par vbochet's avatar vbochet
Parcourir les fichiers

Modification de la vue du détail d'un jeu pour prendre en compte le design

parent 06faaec1
Aucune branche associée trouvée
Aucune étiquette associée trouvée
2 requêtes de fusion!21Merge de Dev dans Master,!3Merge de Application_design_views dans Dev
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>Fiche d'un jeu</title>
</head>
<body>
<header>
<h1>Fiche du jeu <?php echo $this->jeu->nom; ?></h1>
</header>
<p><em>Description : </em><?php echo $this->jeu->description; ?></p>
<footer>
<p>Pied de page...</p>
</footer>
</body>
<?php $page_title = "Fiche du jeu ".$this->jeu->nom;
$RACINE = "../.."; ?>
<?php include(ROOT."/app/view/Includes/header.include.html"); ?>
<article>
<h2><?php echo $this->jeu->nom; ?></h2>
<aside class="jeu-image"><img src="<?php echo $RACINE; ?>/app/view/Includes/images/Cosmic_Encounter_(FFG).jpg" alt="Logo du jeu <?php echo $this->jeu->nom; ?>" />
</aside>
<div class="row">
<p class="col-7">
<?php echo $this->jeu->description; ?>
</p>
</div>
</article>
</html>
<div class="classement-card">
<table class="classement-table">
<tr><th></th><th colspan="2">Joueur</th><th>Score</th></tr>
<tr><td>1</td><td><a href="profil.html"><img src="<?php echo $RACINE; ?>/app/view/Includes/images/dummy_web_page.jpg" alt="Image de profil de <nom>" class="classement-profil-img"></a></td><td><a href="profil.html">Gaston</a></td><td>3000000</td></tr>
<tr><td>2</td><td><a href="profil.html"><img src="<?php echo $RACINE; ?>/app/view/Includes/images/profil_42.jpg" alt="Image de profil de <nom>" class="classement-profil-img"></a></td><td><a href="profil.html">Laurent</a></td><td>150000</td></tr>
<tr><td>3</td><td><a href="profil.html"><img src="<?php echo $RACINE; ?>/app/view/Includes/images/dummy_web_page.jpg" alt="Image de profil de <nom>" class="classement-profil-img"></a></td><td><a href="profil.html">Jerémy</a></td><td>15200</td></tr>
<tr><td>4</td><td><a href="profil.html"><img src="<?php echo $RACINE; ?>/app/view/Includes/images/profil_42.jpg" alt="Image de profil de <nom>" class="classement-profil-img"></a></td><td><a href="profil.html">Lucas</a></td><td>500</td></tr>
<tr><td>5</td><td><a href="profil.html"><img src="<?php echo $RACINE; ?>/app/view/Includes/images/dummy_web_page.jpg" alt="Image de profil de <nom>" class="classement-profil-img"></a></td><td><a href="profil.html">Christophe</a></td><td>-400</td></tr>
</table>
</div>
<?php include(ROOT."/app/view/Includes/footer.include.html"); ?>
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter