<!DOCTYPE html> 
<html lang="en"> 
<head> 
  <title>Bootstrap Example</title> 
  <meta charset="utf-8"> 
  <meta name="viewport" content="width=device-width, initial-scale=1"> 
  <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"> 
  <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> 
  <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script> 
  <style> 
    /* Set height of the grid so .sidenav can be 100% (adjust if needed) */ 
 
    /* Set gray background color and 100% height */ 
    .sidenav { 
      background-color: #f1f1f1; 
      height: 100%; 
    } 
 
    /* Set black background color, white text and some padding */ 
    footer { 
        position: fixed; 
        bottom: 0; 
        left: 0; 
        width:100%; 
      background-color: #555; 
      color: white; 
      padding: 15px; 
    } 
    .container-fluid 
    { 
        width:100%; 
        overflow-x: hidden; 
    } 
 
    /* On small screens, set height to 'auto' for sidenav and grid */ 
    @media screen and (max-width: 767px) { 
      .sidenav { 
        height: auto; 
        padding: 15px; 
      } 
      .row.content {height: auto;} 
    } 
  </style> 
</head> 
<body> 
 
<div class="container-fluid"> 
  <div class="row content"> 
    <div class="col-sm-3 sidenav"> 
      <h4>Jframe Veiw sample Layout</h4> 
      <ul class="nav nav-pills nav-stacked"> 
        <li><a href="<?=HTTP_HOST?>main">Home</a></li> 
        <li><a href="<?=HTTP_HOST?>userpicture">User picture</a></li> 
      </ul><br> 
    </div>
 
 |