Advertisement
Guest User

Untitled

a guest
Aug 16th, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.06 KB | None | 0 0
  1. <html>
  2.     <head>
  3.         <meta charset=UTF-8">
  4.         <title><?php echo $title;?></title>
  5.         <style type="text/css">
  6.             .center{
  7.                 width:500px;
  8.                 margin-left:auto;
  9.                 margin-right:auto;
  10. }
  11.             .content{
  12.                 color: #666;
  13.                 font-size: 12px;
  14. }
  15.             .option{
  16.                 font-size: 10px;
  17.                 float: right;
  18.                 color: red;
  19. }
  20.         </style>
  21.     </head>
  22.     <body>
  23.     <h2><?php echo $title;?></h2>
  24.     <div  class="center">
  25.     <?if($blog_set):?>
  26.         <?  foreach ($blog_set as $b):?>
  27.             <b><?php echo $b->blog_title;?></b>
  28.             <p class="content"><?php echo $b->blog_content;?></p>
  29.             <div class="option">
  30.                 <a href="<?php echo $base_url;?>blog/edit/<?php echo $b->blog_id;?>">Edit</a>
  31.             </div>
  32.             <hr noshade size="1"/>
  33.         <?endforeach;?>
  34.             <?else:?>
  35.                 There is no any blog right now.
  36.             <?endif;?>
  37.     </div>
  38.     </body>
  39. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement