65 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			65 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html lang="fr">
 | |
| <head>
 | |
|     <meta charset="utf-8">
 | |
|     <title>Ginou • tableau <!-- insérer le nom et/ou le numéro --></title>
 | |
|     <meta name="description" content="Site dédié à la mémoire et aux peintures de Geneviève Collignon, dite Ginou.">
 | |
|     <meta name="author" content="Famille Marchal">
 | |
|     <meta name="viewport" content="width=device-width, initial-scale=1">
 | |
|     <link rel="shortcut icon" href="images/favicon.png">
 | |
|     <link rel="stylesheet" href="styles/main.css" media="screen">
 | |
|     <script src="scripts/menu.js"></script>
 | |
| </head>
 | |
| <body>
 | |
|     <header>
 | |
|         <nav>
 | |
|             <div id="hamburger">
 | |
|                 <div class="container" onclick="mobilemenu()"><div class="bar1"></div><div class="bar2"></div><div class="bar3"></div></div>
 | |
|             </div>
 | |
|             <ul>
 | |
|                 <li class="title">Ginou</li>
 | |
|                 <li><a href="index.html">Accueil</a></li>
 | |
|                 <li><a href="biographie.html">Biographie</a></li>
 | |
|                 <li><a href="exposition.html">Exposition</a></li>
 | |
|                 <li><a href="explorer.html">Explorer</a></li>
 | |
|                 <li><a href="divers.html">Divers</a></li>
 | |
|                 <li><a href="informations.html">Informations</a></li>
 | |
|             </ul>
 | |
|         </nav>
 | |
|     </header>
 | |
| 
 | |
|     <article class="painting">
 | |
| 
 | |
|         <div class="container">
 | |
|             <div></div> <!-- fake div to center with a flex box -->
 | |
| 
 | |
|             <div>
 | |
|                 <img src="photos/paintings/normal/26.jpg">
 | |
|             </div>
 | |
| 
 | |
|             <div>
 | |
|                 <ul class="metadata">
 | |
|                     <li><span class="title">numéro :</span><span class="content"> 42</span></li>
 | |
|                     <li><span class="title">date :</span><span class="content"> février 1974</span></li>
 | |
|                     <li><span class="title">format :</span><span class="content"> 30x39</span></li>
 | |
|                     <li><span class="title">support :</span><span class="content"> toile</span></li>
 | |
|                     <li><span class="title">thème :</span><span class="content"> Reproduction</span></li>
 | |
|                     <li><span class="title">lieu :</span><span class="content"> -</span></li>
 | |
|                     <li><span class="title">catégorie :</span><span class="content"> -</span></li>
 | |
|                     <li><span class="title">état photo :</span><span class="content"> mauvais</span></li>
 | |
|                     <li><span class="title">aide requise :</span><span class="content"> <a href="informations.html"><strong>oui (!)</strong></a></span></li>
 | |
|                     <li><span class="title">commentaire :</span><span class="content"> Reproduction de Courbet</span></li>
 | |
|                     <li><span class="content"><a href="photos/paintings/original/42.jpg">photo originale ⭧</a></span></li>
 | |
|                 </ul>
 | |
|             </div>
 | |
|         </div>
 | |
| 
 | |
|         <div id="info">
 | |
|             <span class="title">La Truite</span><span class="year">1960</span>
 | |
|             <span class="format">Huile sur toile (55x35)</span>
 | |
|             <span class="comment">Reproduction de Courbet</span>
 | |
|         </div>
 | |
| 
 | |
|     </article>
 | |
| </body>
 | |
| </html> |