Advertisement
tonny16

affichier_article.php

Apr 21st, 2017
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.93 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" >
  3.  
  4.     <head>
  5.         <title>Article Blog</title>
  6.         <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $this->config->item('charset'); ?>" />
  7.         <link href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" rel="stylesheet">
  8.     <link rel="stylesheet" type="text/css" media="screen" href="assets/css/style_blog.css" />
  9.         <link rel="stylesheet" type="text/css" media="screen" href="assets/css/style.css" />
  10.     </head>
  11.  
  12.     <body>
  13.         <div class="container">
  14.  
  15.             <div class="row">
  16.  
  17.                 <div class="col-lg-12 col-sm-12">
  18.    
  19.                     <h1>Articles</h1>
  20.  
  21.                 </div>
  22.             </div>
  23.  
  24.             <div class="row">
  25.  
  26.                 <div class="col-lg-8 col-sm-8">
  27.  
  28.                 <p>
  29.                     <?php echo $titre ;?>
  30.                 </p>
  31.  
  32.                 </div>
  33.             </div>
  34.         </div>
  35.            
  36.  
  37.     </body>
  38.  
  39. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement