Advertisement
Guest User

Untitled

a guest
May 19th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.66 KB | None | 0 0
  1. <?php include 'templates/header.tpl'; ?>
  2.     <body>
  3.         <div id="container">
  4.             <div id="content">
  5.                 <div id="header">
  6.                     <h1 class="flir">ircb quote database</h1>
  7.                 </div><!-- end header -->
  8.                 <?php foreach ($quotes as $quote): ?>
  9.                 <div class="quotes">
  10.                     <div class="id"><a href="?quote=<?php echo $quote['id']; ?>"><?php echo $quote['id']; ?></a></div>
  11.                     <div class="quote"><?php echo add_br($quote['quote']); ?></div>
  12.                     <div class="added-by">Added by <?php echo $quote['author']; ?></div>
  13.                 </div>
  14.                 <?php endforeach; ?>
  15.             </div><!-- end content -->
  16.             <?php echo $pagination; ?>
  17.         </div><!-- end container -->
  18.     </body>
  19. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement