The general template structure is the same throughout the template. All template files have fixed structure consisting of header, top menu, main sidebar menu and page content.
The basic HTML structure is as shown below. You can add different components to suit your needs. You will find a blank page template in the pages folder. You can modify header, top menu and side bar menu of this page and start using it as the basic page template for your project.
<!doctype html><html lang="en"><head> <meta charset="utf-8" /> <link rel="apple-touch-icon" sizes="76x76" href="../assets/img/apple-icon.png" /> <link rel="icon" type="image/png" href="../assets/img/favicon.png" /> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> <title>Amaze - Bootstrap Admin Dashboard Template</title> <meta content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0' name='viewport' /> <meta name="viewport" content="width=device-width" /> <!-- Bootstrap core CSS --> <link href="../assets/css/bootstrap.min.css" rel="stylesheet" /> <!-- Paper Dashboard CSS --> <link href="../assets/css/amaze.css" rel="stylesheet" /> <!-- CSS for Demo Purpose, don't include it in your project --> <link href="../assets/css/demo.css" rel="stylesheet" /> <!-- Fonts and icons --> <link href="http://maxcdn.bootstrapcdn.com/font-awesome/latest/css/font-awesome.min.css" rel="stylesheet"> <link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700|Material+Icons" /> <link href="../assets/css/themify-icons.css" rel="stylesheet"></head><body> <div class="wrapper"> <div class="sidebar" data-background-color="brown" data-active-color="danger"> <div class="logo"> <a href="#" class="simple-text"> Amaze Admin </a> </div> <div class="logo logo-mini"> <a href="#" class="simple-text"> A </a> </div> <div class="sidebar-wrapper"> <ul class="nav"> <li> <a href="../index.html"> <i class="ti-panel"></i> <p>Dashboard</p> </a> </li> </ul> </div> </div> <div class="main-panel"> <nav class="navbar navbar-default"> //add class .navbar-fixed for a sticky navbar <div class="container-fluid"> <div class="navbar-minimize"> <button id="minimizeSidebar" class="btn btn-round btn-white btn-fill btn-just-icon"> <i class="ti-arrow-left"></i> </button> </div> <div class="navbar-header"> <button type="button" class="navbar-toggle" data-toggle="collapse"> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <a class="navbar-brand" href="#"> Tabs </a> </div> <div class="collapse navbar-collapse"> </div> </div> </nav> <div class="content"> <div class="container-fluid"> </div> </div> <footer class="footer"> <div class="container-fluid"> </div> </footer> </div> </div></body><!-- Core JS Files --><script src="../assets/vendors/jquery-3.1.1.min.js" type="text/javascript"></script><script src="../assets/vendors/jquery-ui.min.js" type="text/javascript"></script><script src="../assets/vendors/bootstrap.min.js" type="text/javascript"></script><script src="../assets/vendors/perfect-scrollbar.jquery.min.js" type="text/javascript"></script><!-- Amaze Admin javascript methods --><script src="../assets/js/amaze.js"></script><!-- Amaze Admin DEMO methods, don't include it in your project! --><script src="../assets/js/demo.js"></script></html>